- java.lang.Object
- 
- java.io.OutputStream
- 
- java.io.FilterOutputStream
- 
- java.io.DataOutputStream
 
 
 
- 
- All Implemented Interfaces:
- Closeable,- DataOutput,- Flushable,- AutoCloseable
 
 
 public class DataOutputStream extends FilterOutputStream implements DataOutput A data output stream lets an application write primitive Java data types to an output stream in a portable way. An application can then use a data input stream to read the data back in.- Since:
- 1.0
- See Also:
- DataInputStream
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected intwrittenThe number of bytes written to the data output stream so far.- 
Fields inherited from class java.io.FilterOutputStreamout
 
- 
 - 
Constructor SummaryConstructors Constructor Description DataOutputStream(OutputStream out)Creates a new data output stream to write data to the specified underlying output stream.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidflush()Flushes this data output stream.intsize()Returns the current value of the counterwritten, the number of bytes written to this data output stream so far.voidwrite(byte[] b, int off, int len)Writeslenbytes from the specified byte array starting at offsetoffto the underlying output stream.voidwrite(int b)Writes the specified byte (the low eight bits of the argumentb) to the underlying output stream.voidwriteBoolean(boolean v)Writes abooleanto the underlying output stream as a 1-byte value.voidwriteByte(int v)Writes out abyteto the underlying output stream as a 1-byte value.voidwriteBytes(String s)Writes out the string to the underlying output stream as a sequence of bytes.voidwriteChar(int v)Writes acharto the underlying output stream as a 2-byte value, high byte first.voidwriteChars(String s)Writes a string to the underlying output stream as a sequence of characters.voidwriteDouble(double v)Converts the double argument to alongusing thedoubleToLongBitsmethod in classDouble, and then writes thatlongvalue to the underlying output stream as an 8-byte quantity, high byte first.voidwriteFloat(float v)Converts the float argument to anintusing thefloatToIntBitsmethod in classFloat, and then writes thatintvalue to the underlying output stream as a 4-byte quantity, high byte first.voidwriteInt(int v)Writes anintto the underlying output stream as four bytes, high byte first.voidwriteLong(long v)Writes alongto the underlying output stream as eight bytes, high byte first.voidwriteShort(int v)Writes ashortto the underlying output stream as two bytes, high byte first.voidwriteUTF(String str)Writes a string to the underlying output stream using modified UTF-8 encoding in a machine-independent manner.- 
Methods inherited from interface java.io.DataOutputwrite
 - 
Methods inherited from class java.io.FilterOutputStreamclose, write
 
- 
 
- 
- 
- 
Constructor Detail- 
DataOutputStreampublic DataOutputStream(OutputStream out) Creates a new data output stream to write data to the specified underlying output stream. The counterwrittenis set to zero.- Parameters:
- out- the underlying output stream, to be saved for later use.
- See Also:
- FilterOutputStream.out
 
 
- 
 - 
Method Detail- 
writepublic void write(int b) throws IOExceptionWrites the specified byte (the low eight bits of the argumentb) to the underlying output stream. If no exception is thrown, the counterwrittenis incremented by1.Implements the writemethod ofOutputStream.- Specified by:
- writein interface- DataOutput
- Overrides:
- writein class- FilterOutputStream
- Parameters:
- b- the- byteto be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out
 
 - 
writepublic void write(byte[] b, int off, int len) throws IOExceptionWriteslenbytes from the specified byte array starting at offsetoffto the underlying output stream. If no exception is thrown, the counterwrittenis incremented bylen.- Specified by:
- writein interface- DataOutput
- Overrides:
- writein class- FilterOutputStream
- Parameters:
- b- the data.
- off- the start offset in the data.
- len- the number of bytes to write.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out
 
 - 
flushpublic void flush() throws IOExceptionFlushes this data output stream. This forces any buffered output bytes to be written out to the stream.The flushmethod ofDataOutputStreamcalls theflushmethod of its underlying output stream.- Specified by:
- flushin interface- Flushable
- Overrides:
- flushin class- FilterOutputStream
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out,- OutputStream.flush()
 
 - 
writeBooleanpublic final void writeBoolean(boolean v) throws IOExceptionWrites abooleanto the underlying output stream as a 1-byte value. The valuetrueis written out as the value(byte)1; the valuefalseis written out as the value(byte)0. If no exception is thrown, the counterwrittenis incremented by1.- Specified by:
- writeBooleanin interface- DataOutput
- Parameters:
- v- a- booleanvalue to be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out
 
 - 
writeBytepublic final void writeByte(int v) throws IOExceptionWrites out abyteto the underlying output stream as a 1-byte value. If no exception is thrown, the counterwrittenis incremented by1.- Specified by:
- writeBytein interface- DataOutput
- Parameters:
- v- a- bytevalue to be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out
 
 - 
writeShortpublic final void writeShort(int v) throws IOExceptionWrites ashortto the underlying output stream as two bytes, high byte first. If no exception is thrown, the counterwrittenis incremented by2.- Specified by:
- writeShortin interface- DataOutput
- Parameters:
- v- a- shortto be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out
 
 - 
writeCharpublic final void writeChar(int v) throws IOExceptionWrites acharto the underlying output stream as a 2-byte value, high byte first. If no exception is thrown, the counterwrittenis incremented by2.- Specified by:
- writeCharin interface- DataOutput
- Parameters:
- v- a- charvalue to be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out
 
 - 
writeIntpublic final void writeInt(int v) throws IOExceptionWrites anintto the underlying output stream as four bytes, high byte first. If no exception is thrown, the counterwrittenis incremented by4.- Specified by:
- writeIntin interface- DataOutput
- Parameters:
- v- an- intto be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out
 
 - 
writeLongpublic final void writeLong(long v) throws IOExceptionWrites alongto the underlying output stream as eight bytes, high byte first. In no exception is thrown, the counterwrittenis incremented by8.- Specified by:
- writeLongin interface- DataOutput
- Parameters:
- v- a- longto be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out
 
 - 
writeFloatpublic final void writeFloat(float v) throws IOExceptionConverts the float argument to anintusing thefloatToIntBitsmethod in classFloat, and then writes thatintvalue to the underlying output stream as a 4-byte quantity, high byte first. If no exception is thrown, the counterwrittenis incremented by4.- Specified by:
- writeFloatin interface- DataOutput
- Parameters:
- v- a- floatvalue to be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out,- Float.floatToIntBits(float)
 
 - 
writeDoublepublic final void writeDouble(double v) throws IOExceptionConverts the double argument to alongusing thedoubleToLongBitsmethod in classDouble, and then writes thatlongvalue to the underlying output stream as an 8-byte quantity, high byte first. If no exception is thrown, the counterwrittenis incremented by8.- Specified by:
- writeDoublein interface- DataOutput
- Parameters:
- v- a- doublevalue to be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out,- Double.doubleToLongBits(double)
 
 - 
writeBytespublic final void writeBytes(String s) throws IOException Writes out the string to the underlying output stream as a sequence of bytes. Each character in the string is written out, in sequence, by discarding its high eight bits. If no exception is thrown, the counterwrittenis incremented by the length ofs.- Specified by:
- writeBytesin interface- DataOutput
- Parameters:
- s- a string of bytes to be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- FilterOutputStream.out
 
 - 
writeCharspublic final void writeChars(String s) throws IOException Writes a string to the underlying output stream as a sequence of characters. Each character is written to the data output stream as if by thewriteCharmethod. If no exception is thrown, the counterwrittenis incremented by twice the length ofs.- Specified by:
- writeCharsin interface- DataOutput
- Parameters:
- s- a- Stringvalue to be written.
- Throws:
- IOException- if an I/O error occurs.
- See Also:
- writeChar(int),- FilterOutputStream.out
 
 - 
writeUTFpublic final void writeUTF(String str) throws IOException Writes a string to the underlying output stream using modified UTF-8 encoding in a machine-independent manner.First, two bytes are written to the output stream as if by the writeShortmethod giving the number of bytes to follow. This value is the number of bytes actually written out, not the length of the string. Following the length, each character of the string is output, in sequence, using the modified UTF-8 encoding for the character. If no exception is thrown, the counterwrittenis incremented by the total number of bytes written to the output stream. This will be at least two plus the length ofstr, and at most two plus thrice the length ofstr.- Specified by:
- writeUTFin interface- DataOutput
- Parameters:
- str- a string to be written.
- Throws:
- IOException- if an I/O error occurs.
 
 - 
sizepublic final int size() Returns the current value of the counterwritten, the number of bytes written to this data output stream so far. If the counter overflows, it will be wrapped to Integer.MAX_VALUE.- Returns:
- the value of the writtenfield.
- See Also:
- written
 
 
- 
 
-