Example usage for Java java.io ObjectInput fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Closes the input stream. |
Class> | getClass() Returns the runtime class of this Object . |
int | read(byte b[]) Reads into an array of bytes. |
int | read() Reads a byte of data. |
int | read(byte b[], int off, int len) Reads into an array of bytes. |
boolean | readBoolean() Reads one input byte and returns true if that byte is nonzero, false if that byte is zero. |
byte | readByte() Reads and returns one input byte. |
char | readChar() Reads two input bytes and returns a char value. |
double | readDouble() Reads eight input bytes and returns a double value. |
float | readFloat() Reads four input bytes and returns a float value. |
void | readFully(byte b[], int off, int len) Reads len bytes from an input stream. |
void | readFully(byte b[]) Reads some bytes from an input stream and stores them into the buffer array b . |
int | readInt() Reads four input bytes and returns an int value. |
long | readLong() Reads eight input bytes and returns a long value. |
Object | readObject() Read and return an object. |
short | readShort() Reads two input bytes and returns a short value. |
String | readUTF() Reads in a string that has been encoded using a modified UTF-8 format. |