Method Summary |
|
public int | available() Return the number of bytes that can be read without blocking. |
public void | close() Close the stream. |
public int | getPosition() Return the number of bytes read so far from this input stream. |
public void | mark(int readLimit) Mark the current position in the input stream. |
public boolean | markSupported() |
public int | read() Read the next byte from this input stream. |
public int | read(byte[] buf, int offset, int cnt) Read a block of bytes from this input stream. |
public int | read(byte[] buf) Read a block of bytes from this input stream. |
public void | reset() Return to the previously marked position in the input stream. |
public void | setPosition(int pos) |
public long | skip(long n) Skip ahead in the stream. |