Introduction
Declaration Public class FilterInputStream extends InputStream
Fields
Table | Constructor | Description |
|---|---|
| Protected FilterInputStream( InputStream in) | The function of this constructor is to create the filer input stream 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(byte[] b, int off, int n) | By using this method it reads the data up to ‘n’ bytes from the input stream to an array of the bytes. |
| Long skip (long m) | From the input stream this method skips over and throw out ‘n’ bytes of data. |
| int read() | The function of this method is to read the data in bytes. |
Description
Examples
Key Points