API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.io. FilterOutputStream View Source
Author(s)
Jonathan Payne
Since
JDK1.0
Version
1.32, 11/17/05
Serial
Hierarchy
 Object
      OutputStream
          FilterOutputStream
Implements
Subclasses
Description
public class FilterOutputStream
  This class is the superclass of all classes that filter output streams.
See also:   
Constructors
public FilterOutputStream (OutputStream out)
  Creates an output stream filter built on top of the specified underlying output stream.
Methods
Hide/Show inherited methods
public void close () throws IOException [Overrides OutputStream]
  Closes this output stream and releases any system resources associated with the stream.
public void flush () throws IOException [Overrides OutputStream]
  Flushes this output stream and forces any buffered output bytes to be written out to the stream.
public void write (byte[] b) throws IOException [Overrides OutputStream]
  Writes b.length bytes to this output stream.
public void write (byte[] b, int off, int len) throws IOException [Overrides OutputStream]
  Writes len bytes from the specified byte array starting at offset off to this output stream.
public void write (int b) throws IOException [Specified in OutputStream]
  Writes the specified byte to this output stream.
Fields
Hide/Show inherited fields
protected OutputStream out
The underlying output stream to be filtered.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar