Introduction
Description
Declaration Public class BufferedReader extends Reader
Table | Constructor | Description |
|---|---|
| BufferedReader (Reader in) | The function of this constructor is to create the Java.io BufferedReader object for input character stream with default buffer size. |
| BufferedReader (Reader in, int n) | The function of this constructor is to create the buffered reader object for input character stream with represented buffer size. |
Table | Method | Description |
|---|---|
| void close() | The function of this method is to close the present stream and associated to input stream systems resources are released. |
| String readLine () | The function of this method is to read the a line of characters or text. |
| Long skip (long m) | The function of this method is to skip the text or characters in this stream of ' m ' bytes. |
| Boolean ready() | The function of this method is to check whether the current stream is ready to read the characters or not. |
Description
Examples
Key Points