Constructors
| Name | Description |
|---|---|
| BufferedReader(Reader) | Create a buffering character-input stream that uses a default-sized input buffer. |
| BufferedReader(Reader, int) | Create a buffering character-input stream that uses an input buffer of the specified size. |
Methods
| Name | Description |
|---|---|
| close() | Close the stream. |
| mark(int) | Mark the present position in the stream. |
| markSupported() | Tell whether this stream supports the mark() operation, which it does. |
| read() | Read a single character. |
| read(char[], int, int) | Read characters into a portion of an array. |
| readLine() | Read a line of text. |
| ready() | Tell whether this stream is ready to be read. |
| reset() | Reset the stream to the most recent mark. |
| skip(long) | Skip characters. |