The members of Java.IO.IDataInput are listed below.
ReadBoolean()Reads a boolean. | ||
ReadByte()Reads an 8-bit byte value. | ||
ReadChar()Reads a big-endian 16-bit character value. | ||
ReadDouble()Reads a big-endian 64-bit double value. | ||
ReadFloat()Reads a big-endian 32-bit float value. | ||
ReadFully(byte[])Equivalent to readFully(dst, 0, dst.length);. | ||
ReadFully(byte[], int, int)Reads byteCount bytes from this stream and stores them in the byte array dst starting at offset. | ||
ReadInt()Reads a big-endian 32-bit integer value. | ||
ReadLine()Returns a string containing the next line of text available from this stream. | ||
ReadLong()Reads a big-endian 64-bit long value. | ||
ReadShort()Reads a big-endian 16-bit short value. | ||
ReadUnsignedByte()Reads an unsigned 8-bit byte value and returns it as an int. | ||
ReadUnsignedShort()Reads a big-endian 16-bit unsigned short value and returns it as an int. | ||
ReadUTF()Reads a string encoded with Java.IO.IDataInput. | ||
SkipBytes(int)Skips count number of bytes. |