All Packages Class Hierarchy This Package Previous Next Index
boolean
value from the input stream.
char
value from the input stream.
double
value from the input stream.
float
value from the input stream.
b.length
bytes into the byte array.
b.length
bytes into the byte array.
int
value from the input stream.
long
value from the input stream.
n
bytes of input.
public abstract void readFully(byte b[]) throws IOException
b.length
bytes into the byte array. This
method blocks until all the bytes are read.
public abstract void readFully(byte b[],
int off,
int len) throws IOException
b.length
bytes into the byte array. This
method blocks until all the bytes are read.
public abstract int skipBytes(int n) throws IOException
n
bytes of input.
n
.
public abstract boolean readBoolean() throws IOException
boolean
value from the input stream.
boolean
value read.
public abstract byte readByte() throws IOException
public abstract int readUnsignedByte() throws IOException
public abstract short readShort() throws IOException
public abstract int readUnsignedShort() throws IOException
public abstract char readChar() throws IOException
char
value from the input stream.
char
read.
public abstract int readInt() throws IOException
int
value from the input stream.
int
value read.
public abstract long readLong() throws IOException
long
value from the input stream.
long
value read.
public abstract float readFloat() throws IOException
float
value from the input stream.
float
value read.
public abstract double readDouble() throws IOException
double
value from the input stream.
double
value read.
public abstract String readLine() throws IOException
public abstract String readUTF() throws IOException
For an exact description of this method, see the discussion in Gosling, Joy, and Steele, The Java Language Specification.
All Packages Class Hierarchy This Package Previous Next Index