public abstract class OutputStream
  Comment     Returned-by     Constructor-argument     Method-argument     Field-type     Type-bound     Links  

This abstract class is the superclass of all classes representing an output stream of bytes. An output stream accepts output bytes and sends them to some sink.

Applications that need to define a subclass of OutputStream must always provide at least a method that writes one byte of output.

implements Closeable, Flushable

See also:
java.io.BufferedOutputStream, java.io.ByteArrayOutputStream, java.io.DataOutputStream, java.io.FilterOutputStream, java.io.InputStream, java.io.OutputStream.write(int)

Since:  1.0