CustomServletOutputStream.java
666 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.servlet.ServletOutputStream
*/
package com.adobe.forms.common.submitutils;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import javax.servlet.ServletOutputStream;
public class CustomServletOutputStream
extends ServletOutputStream {
private ByteArrayOutputStream copy = new ByteArrayOutputStream();
public void write(int b) throws IOException {
this.copy.write(b);
}
public void write(byte[] b) throws IOException {
this.copy.write(b);
}
public byte[] getCopy() {
return this.copy.toByteArray();
}
}