API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.io. OutputStream View Source
Author(s)
Arthur van Hoff
Since
JDK1.0
Version
1.30, 11/17/05
Serial
Hierarchy
 Object
      OutputStream
Implements
 Closeable
 Flushable
Subclasses
Description
publicabstract abstract class OutputStream
  This abstract class is the superclass of all classes representing an output stream of bytes.
Constructors
public OutputStream ()
Methods
Hide/Show inherited methods
public void close () throws IOException [Specified in Closeable]
  Closes this output stream and releases any system resources associated with this stream.
public void flush () throws IOException [Specified in Flushable]
  Flushes this output stream and forces any buffered output bytes to be written out.
public void write (byte[] b) throws IOException
  Writes b.length bytes from the specified byte array to this output stream.
public void write (byte[] b, int off, int len) throws IOException
  Writes len bytes from the specified byte array starting at offset off to this output stream.
publicabstract void write (int b) throws IOException
  Writes the specified byte to this output stream.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar