java.lang.Object | |||||||||||||||||||||||||||||||||||||||
| | |||||||||||||||||||||||||||||||||||||||
| | - | - | java.io.Reader | ||||||||||||||||||||||||||||||||||||
Abstract class for reading character streams.
Return | Method | Summary |
---|---|---|
abstract | void close() | Closes the stream and releases any system resources associated with it. |
void | mark(int readAheadLimit) | Marks the present position in the stream. |
boolean | markSupported() | Tells whether this stream supports the mark() operation. |
int | read() | Reads a single character. |
int | read(char[] cbuf) | Reads characters into an array. |
abstract int | read(char[] cbuf, int off, int len) | Reads characters into a portion of an array. |
int | read(CharBuffer target) | Attempts to read characters into the specified character buffer. |
boolean | ready() | Tells whether this stream is ready to be read. |
void | reset() | Resets the stream. |
long | skip(long n) | Skips characters. |
java2s.com | Contact Us | Privacy Policy |
Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
All other trademarks are property of their respective owners. |