The members of Java.IO.DataInputStream are listed below.
See Also: Inherited members from Java.IO.FilterInputStream
Constructs a new DataInputStream on the InputStream in. |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
[read-only] override | ThresholdClass | IntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
[read-only] override | ThresholdType | Type. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
override | Read(byte[])Equivalent to read(buffer, 0, buffer.length). | |
override | Read(byte[], int, int)Reads up to byteCount bytes from this stream and stores them in the byte array buffer starting at byteOffset. | |
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. | ||
static | ReadUTF(IDataInput) | |
SkipBytes(int)Skips count number of bytes in this stream. |