Class java.io.OutputStream (1.0)


public abstract class OutputStream extends Object {
  // Default Constructor: public OutputStream( )
  // Public Instance Methods
    public void close( ) throws IOException;  // Empty
    public void flush( ) throws IOException;  // Empty
    public abstract void write(int b) throws IOException;
    public void write(byte[ ] b) throws IOException;
    public void write(byte[ ] b, int off, int len) throws IOException;
}