Example usage for Java java.io Reader fields, constructors, methods, implement or subclass
The text is from its open source code.
Reader() Creates a new character-stream reader whose critical sections will synchronize on the reader itself. |
void | close() Closes the stream and releases any system resources associated with it. |
Class> | getClass() Returns the runtime class of this Object . |
int | hashCode() Returns a hash code value for the object. |
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(java.nio.CharBuffer target) Attempts to read characters into the specified character buffer. |
int | read(char cbuf[]) Reads characters into an array. |
int | read(char cbuf[], int off, int len) Reads characters into a portion of an array. |
boolean | ready() Tells whether this stream is ready to be read. |
void | reset() Resets the stream. |
long | skip(long n) Skips characters. |
String | toString() Returns a string representation of the object. |