Method Summary |
|
abstract public boolean | readBoolean() Reads a boolean from this stream. |
abstract public byte | readByte() Reads an 8-bit byte value from this stream. |
abstract public char | readChar() Reads a 16-bit character value from this stream. |
abstract public double | readDouble() Reads a 64-bit double value from this stream. |
abstract public float | readFloat() Reads a 32-bit float value from this stream. |
abstract public void | readFully(byte[] buffer) Reads bytes from this stream into the byte array buffer . |
abstract public void | readFully(byte[] buffer, int offset, int count) Read bytes from this stream and stores them in byte array
buffer starting at offset offset . |
abstract public int | readInt() Reads a 32-bit integer value from this stream. |
abstract public String | readLine() Answers a String representing the next line of text
available in this BufferedReader. |
abstract public long | readLong() Reads a 64-bit long value from this stream. |
abstract public short | readShort() Reads a 16-bit short value from this stream. |
abstract public String | readUTF() Reads a UTF format String from this Stream. |
abstract public int | readUnsignedByte() Reads an unsigned 8-bit byte value from this stream and
returns it as an int. |
abstract public int | readUnsignedShort() Reads a 16-bit unsigned short value from this stream and
returns it as an int. |
abstract public int | skipBytes(int count) Skips count number of bytes in this stream. |