Method Summary |
|
public void | close() Closes this input stream. |
public void | mark(int readlimit) Marks the current position in this input stream. |
public boolean | markSupported() Returns always
true . |
public int | read() Reads the next byte of data from the input stream. |
public int | read(byte[] b) Reads some number of bytes from the input stream. |
public int | read(byte[] b, int off, int len) Reads up to
len bytes of data from the input stream. |
public void | reset() Repositions this stream to the position at the time
the
mark method was last called. |
public long | skip(long n) Skips over and discards
n bytes of data from this input stream. |