Class NonshareableDataOutputStream
- All Implemented Interfaces:
Closeable
,DataOutput
,Flushable
,AutoCloseable
- Author:
- Andrew Pavlin, KA2DDO
-
Field Summary
Fields inherited from class java.io.FilterOutputStream
out
-
Constructor Summary
ConstructorDescriptionCreates a new data output stream to write data to the specified underlying output stream. -
Method Summary
Modifier and TypeMethodDescriptionvoid
flush()
Flushes this data output stream.void
write
(byte[] b) Writesb.length
bytes to this output stream.void
write
(byte[] b, int off, int len) Writeslen
bytes from the specified byte array starting at offsetoff
to the underlying output stream.void
write
(int b) Writes the specified byte (the low eight bits of the argumentb
) to the underlying output stream.final void
writeBoolean
(boolean v) Writes aboolean
to the underlying output stream as a 1-byte value.final void
writeByte
(int v) Writes out abyte
to the underlying output stream as a 1-byte value.final void
writeBytes
(String s) Writes out the string to the underlying output stream as a sequence of bytes.final void
writeChar
(int v) Writes achar
to the underlying output stream as a 2-byte value, high byte first.final void
writeChars
(String s) Writes a string to the underlying output stream as a sequence of characters.final void
writeDouble
(double v) Converts the double argument to along
using thedoubleToLongBits
method in classDouble
, and then writes thatlong
value to the underlying output stream as an 8-byte quantity, high byte first.final void
writeFloat
(float v) Converts the float argument to anint
using thefloatToIntBits
method in classFloat
, and then writes thatint
value to the underlying output stream as a 4-byte quantity, high byte first.final void
writeInt
(int v) Writes anint
to the underlying output stream as four bytes, high byte first.final void
writeLong
(long v) Writes along
to the underlying output stream as eight bytes, high byte first.final void
writeShort
(int v) Writes ashort
to the underlying output stream as two bytes, high byte first.final void
Writes a string to the underlying output stream usingjava.io.DataInput
's modified UTF-8 encoding in a machine-independent manner.Methods inherited from class java.io.FilterOutputStream
close
Methods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
NonshareableDataOutputStream
Creates a new data output stream to write data to the specified underlying output stream. The counterwritten
is set to zero.- Parameters:
out
- the underlying output stream, to be saved for later use.- See Also:
-
-
Method Details
-
write
Writes the specified byte (the low eight bits of the argumentb
) to the underlying output stream.Implements the
write
method ofOutputStream
.- Specified by:
write
in interfaceDataOutput
- Overrides:
write
in classFilterOutputStream
- Parameters:
b
- thebyte
to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
write
Writesb.length
bytes to this output stream.The
write
method calls the underlying stream'swrite
method of three arguments with the argumentsb
,0
, andb.length
.Note that this method does not call the one-argument
write
method of its underlying stream with the single argumentb
.- Specified by:
write
in interfaceDataOutput
- Overrides:
write
in classFilterOutputStream
- Parameters:
b
- the data to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
write
Writeslen
bytes from the specified byte array starting at offsetoff
to the underlying output stream.- Specified by:
write
in interfaceDataOutput
- Overrides:
write
in classFilterOutputStream
- 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:
-
flush
Flushes this data output stream. This forces any buffered output bytes to be written out to the stream.The
flush
method ofDataOutputStream
calls theflush
method of its underlying output stream.- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classFilterOutputStream
- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeBoolean
Writes aboolean
to the underlying output stream as a 1-byte value. The valuetrue
is written out as the value(byte)1
; the valuefalse
is written out as the value(byte)0
.- Specified by:
writeBoolean
in interfaceDataOutput
- Parameters:
v
- aboolean
value to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeByte
Writes out abyte
to the underlying output stream as a 1-byte value.- Specified by:
writeByte
in interfaceDataOutput
- Parameters:
v
- abyte
value to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeShort
Writes ashort
to the underlying output stream as two bytes, high byte first.- Specified by:
writeShort
in interfaceDataOutput
- Parameters:
v
- ashort
to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeChar
Writes achar
to the underlying output stream as a 2-byte value, high byte first.- Specified by:
writeChar
in interfaceDataOutput
- Parameters:
v
- achar
value to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeInt
Writes anint
to the underlying output stream as four bytes, high byte first.- Specified by:
writeInt
in interfaceDataOutput
- Parameters:
v
- anint
to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeLong
Writes along
to the underlying output stream as eight bytes, high byte first.- Specified by:
writeLong
in interfaceDataOutput
- Parameters:
v
- along
to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeFloat
Converts the float argument to anint
using thefloatToIntBits
method in classFloat
, and then writes thatint
value to the underlying output stream as a 4-byte quantity, high byte first.- Specified by:
writeFloat
in interfaceDataOutput
- Parameters:
v
- afloat
value to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeDouble
Converts the double argument to along
using thedoubleToLongBits
method in classDouble
, and then writes thatlong
value to the underlying output stream as an 8-byte quantity, high byte first.- Specified by:
writeDouble
in interfaceDataOutput
- Parameters:
v
- adouble
value to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeBytes
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.- Specified by:
writeBytes
in interfaceDataOutput
- Parameters:
s
- a string of bytes to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeChars
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 thewriteChar
method.- Specified by:
writeChars
in interfaceDataOutput
- Parameters:
s
- aString
value to be written.- Throws:
IOException
- if an I/O error occurs.- See Also:
-
writeUTF
Writes a string to the underlying output stream usingjava.io.DataInput
's modified UTF-8 encoding in a machine-independent manner.First, two bytes are written to the output stream as if by the
writeShort
method 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 counterwritten
is 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:
writeUTF
in interfaceDataOutput
- Parameters:
str
- a string to be written.- Throws:
IOException
- if an I/O error occurs.
-