Constructors
Name | Description |
---|---|
InputStream() |
Methods
Name | Description |
---|---|
available() | Returns the number of bytes that can be read from this input stream without blocking. |
close() | Closes this input stream and releases any system resources associated with the stream. |
mark(int) | Marks the current position in this input stream. |
markSupported() | Tests if this input stream supports the mark and reset methods. |
read() | Reads the next byte of data from this input stream. |
read(byte[]) | Reads up to b.length bytes of data from this input stream into an array of bytes. |
read(byte[], int, int) | Reads up to len bytes of data from this input stream into an array of bytes. |
reset() | Repositions this stream to the position at the time the mark method was last called on this input stream. |
skip(long) | Skips over and discards n bytes of data from this input stream. |