The members of Java.IO.IDataOutput are listed below.
Write(byte[])Writes the entire contents of the byte array buffer to this stream. | ||
Write(int)Writes the specified 8-bit byte. | ||
Write(byte[], int, int)Writes count bytes from the byte array buffer starting at offset index. | ||
WriteBoolean(bool)Writes the specified boolean. | ||
WriteByte(int)Writes the specified 8-bit byte. | ||
WriteBytes(string)Writes the low order 8-bit bytes from the specified string. | ||
WriteChar(int)Writes the specified 16-bit character in big-endian order. | ||
WriteChars(string)Writes the 16-bit characters contained in str in big-endian order. | ||
WriteDouble(double)Writes the specified 64-bit double in big-endian order. | ||
WriteFloat(float)Writes the specified 32-bit float in big-endian order. | ||
WriteInt(int)Writes the specified 32-bit int in big-endian order. | ||
WriteLong(long)Writes the specified 64-bit long in big-endian order. | ||
WriteShort(int)Writes the specified 16-bit short in big-endian order. | ||
WriteUTF(string)Writes the specified string encoded in Java.IO.IDataInput. |