Example usage for Java java.io BufferedReader fields, constructors, methods, implement or subclass
The text is from its open source code.
BufferedReader(Reader in) Creates a buffering character-input stream that uses a default-sized input buffer. | |
BufferedReader(Reader in, int sz) Creates a buffering character-input stream that uses an input buffer of the specified size. |
void | close() |
Class> | getClass() Returns the runtime class of this Object . |
int | hashCode() Returns a hash code value for the object. |
Stream | lines() Returns a Stream , the elements of which are lines read from this BufferedReader . |
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 cbuf[], 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. |
String | readLine() Reads a line of text. |
boolean | ready() Tells whether this stream is ready to be read. |
void | reset() Resets the stream to the most recent mark. |
long | skip(long n) Skips characters. |
String | toString() Returns a string representation of the object. |