FilterReader
itself
provides default methods that pass all requests to
the contained stream. Subclasses of FilterReader
should override some of these methods and may also provide
additional methods and fields.
Modifier and Type | Field and Description |
---|---|
protected Reader | in
The underlying character-input stream. |
Access | Constructor and Description |
---|---|
protected | FilterReader(Reader
a Reader object providing the underlying stream. in)Creates a new filtered reader. |
Modifier and Type | Method and Description |
---|---|
public void | close()
Implements abstract java. Implements java. Closes the stream and releases any system resources associated with it. |
public void | mark(int
Limit on the number of characters that may be
read while still preserving the mark. After
reading this many characters, attempting to
reset the stream may fail. readAheadLimit)Overrides java. Marks the present position in the stream. |
public boolean | markSupported()
Overrides java. Tells whether this stream supports the mark() operation. |
public int | |
public int | read(char[]
Destination buffer cbuf, int Offset at which to start storing characters off, int Maximum number of characters to read len)Implements abstract java. Reads characters into a portion of an array. |
public boolean | |
public void | |
public long |
in | back to summary |
---|---|
protected Reader in The underlying character-input stream. |
FilterReader | back to summary |
---|---|
protected FilterReader(Reader in) Creates a new filtered reader.
|
close | back to summary |
---|---|
public void close() throws IOException Implements abstract java. Implements java. Doc from java. Closes the stream and releases any system resources associated with it. Once the stream has been closed, further read(), ready(), mark(), reset(), or skip() invocations will throw an IOException. Closing a previously closed stream has no effect.
|
mark | back to summary |
---|---|
public void mark(int readAheadLimit) throws IOException Overrides java. Marks the present position in the stream.
|
markSupported | back to summary |
---|---|
public boolean markSupported() Overrides java. Tells whether this stream supports the mark() operation.
|
read | back to summary |
---|---|
public int read() throws IOException Overrides java. Reads a single character.
|
read | back to summary |
---|---|
public int read(char[] cbuf, int off, int len) throws IOException Implements abstract java. Doc from java. Reads characters into a portion of an array. This method will block until some input is available, an I/O error occurs, or the end of the stream is reached. If
|
ready | back to summary |
---|---|
public boolean ready() throws IOException Overrides java. Tells whether this stream is ready to be read.
|
reset | back to summary |
---|---|
public void reset() throws IOException Overrides java. Resets the stream.
|
skip | back to summary |
---|---|
public long skip(long n) throws IOException Overrides java. Doc from java. Skips characters. This method will block until some characters are available, an I/O error occurs, or the end of the stream is reached. If the stream is already at its end before this method is invoked, then no characters are skipped and zero is returned.
|