Introduction
Declaration Public abstract class FilterReader extends Reader
Fields
Table | Constructor | Description |
|---|---|
| Protected FilterReader (Reader in) | The function of this constructor is to create the filer reader instance and used to read from input stream. |
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. |
| Boolean markSupported () | The function of this method is to check the represented mark method is supported by this stream or not. |
| int read(Char[] c, int off, int n) | By using this method it reads the data up to ‘n’ bytes from the character stream into an array of characters. |
| Long skip (long m) | The function of this method is to skip the text or characters in this stream of ‘ m ‘ characters. |
| int read() | The function of this method is to read only one character. |
Description
Examples
Key Points