Introduction
Conceptual
figure
Description
Declaration Public abstract class InputStream extends Object implements closeable
Table | Constructor | Description |
|---|---|
| InputStream() | The function of this constructor is to create the input stream instance. |
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 without any impact. |
| Long skip (long m) | The function of this method is to skip the text or characters in this stream of ' m ' bytes. |
| 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. |
Description
Examples
Key Points