Method Summary |
|
public int | available() Answers a int representing then number of bytes of primitive data that
are available. |
public void | close() Close this ObjectInput. |
public int | read() Reads a single byte from this ObjectInput and returns the result as an
int. |
public int | read(byte[] buffer) Reads bytes from the ObjectInput and stores them in byte
array buffer . |
public int | read(byte[] buffer, int offset, int count) Reads at most count bytes from the ObjectInput and stores
them in byte array buffer starting at offset
count . |
public Object | readObject() Reads the next object from this ObjectInput. |
public long | skip(long toSkip) Skips toSkip number of bytes in this ObjectInput.
Subsequent read() 's will not return these bytes.
Parameters: toSkip - the number of bytes to skip. |