java.io
Class OutputStream

java.lang.Object
  extended by java.io.OutputStream
Direct Known Subclasses:
DebugOutOutputStream, FilterOutputStream

public abstract class OutputStream
extends Object


Constructor Summary
OutputStream()
           
 
Method Summary
 void close()
           
 void flush()
           
 void write(byte[] b)
           
 void write(byte[] b, int off, int len)
           
abstract  void write(int b)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait
 

Constructor Detail

OutputStream

public OutputStream()
Method Detail

close

public void close()
           throws IOException
Throws:
IOException

flush

public void flush()
           throws IOException
Throws:
IOException

write

public abstract void write(int b)
                    throws IOException
Throws:
IOException

write

public void write(byte[] b,
                  int off,
                  int len)
           throws IOException
Throws:
IOException

write

public void write(byte[] b)
           throws IOException
Throws:
IOException