Java.IO.DataOutputStream: Method Members

The methods of Java.IO.DataOutputStream are listed below. For a list of all members, see the DataOutputStream Members list.

See Also: Inherited members from Java.IO.FilterOutputStream

Public Methods

Size() : int
Returns the total number of bytes written to the target stream so far.
WriteBoolean(bool)
Writes a boolean to the target stream.
WriteByte(int)
Writes an 8-bit byte to the target stream.
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.