Uses of Class java.io.EOFException

Uses in package java.io

Methods which throw type java.io.EOFException

boolean
This method reads a Java boolean value from an input stream.
byte
This method reads a Java byte value from an input stream.
char
This method reads a Java char value from an input stream.
double
This method reads a Java double value from an input stream.
float
This method reads a Java float value from an input stream.
void
DataInput.readFully(byte[] buf)
This method reads raw bytes into the passed array until the array is full.
void
DataInput.readFully(byte[] buf, int offset, int len)
This method reads raw bytes into the passed array buf starting offset bytes into the buffer.
int
This method reads a Java int value from an input stream It operates by reading four bytes from the stream and converting them to a single Java int.
long
This method reads a Java long value from an input stream It operates by reading eight bytes from the stream and converting them to a single Java long.
short
This method reads a signed 16-bit value into a Java in from the stream.
String
This method reads a String from an input stream that is encoded in a modified UTF-8 format.
int
This method reads 8 unsigned bits into a Java int value from the stream.
int
This method reads 16 unsigned bits into a Java int value from the stream.
int
DataInput.skipBytes(int numBytes)
This method skips and discards the specified number of bytes in an input stream.