Example usage for Java java.io CharArrayReader fields, constructors, methods, implement or subclass
The text is from its open source code.
CharArrayReader(char buf[]) Creates a CharArrayReader from the specified array of chars. | |
CharArrayReader(char buf[], int offset, int length) Creates a CharArrayReader from the specified array of chars. |
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, which it does. |
int | read() Reads a single character. |
int | read(char b[], int off, int len) Reads characters into a portion of an array. |
int | read(java.nio.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 to the most recent mark, or to the beginning if it has never been marked. |
long | skip(long n) Skips characters. |