Closes the stream and releases any system resources associated with it.
Marks the present position in the stream.
Tells whether this stream supports the mark() operation.
Reads a single character.
Reads characters into an array.
Reads characters into a portion of an array.
Tells whether this stream is ready to be read.
Resets the stream.
Skips characters.
Reads all characters from this reader and writes the characters to the given writer in the order that they are read.
Static
nullReturns a new Reader that reads no characters.
Abstract class for reading character streams. The only methods that a subclass must implement are read(string, number, number) and close(). Most subclasses, however, will override some of the methods defined here in order to provide higher efficiency, additional functionality, or both.
See java.io.Reader for full documentation