The ActiveXOutputStream Class of the com.ms.ActiveX package provides access to methods that manipulate output streams. You can create an output stream, write bytes to it, flush the output stream, and close it by using the methods in this class.
public class ActiveXOutputStream extends OutputStream { // Constructors public ActiveXOutputStream(IStream stream); // Methods public void close() throws IOException; public void flush() throws IOException; public void write(int b) throws IOException; public void write(byte b[], int off, int len) throws IOException; }
OutputStream | +--ActiveXOutputStream