FilterInputStream Members

FilterInputStream Members

Class Overview | This Package | All Packages

Fields
Name Description
in The underlying input stream.

Constructors
Name Description
FilterInputStream(InputStream) Creates an input stream filter built on top of the specified input stream.

Methods
Name Description
available() Returns the number of bytes that can be read from this input stream without blocking.
close() Closes this input stream and releases any system resources associated with the stream.
mark(int) Marks the current position in this input stream.
markSupported() Tests if this input stream supports the mark and reset methods.
read() Reads the next byte of data from this input stream.
read(byte[]) Reads up to byte.length bytes of data from this input stream into an array of bytes.
read(byte[], int, int) Reads up to len bytes of data from this input stream into an array of bytes.
reset() Repositions this stream to the position at the time the mark method was last called on this input stream.
skip(long) Skips over and discards n bytes of data from the input stream.