Package com.tangosol.io
Class PackedDataOutputStream
- java.lang.Object
 - 
- java.io.OutputStream
 - 
- com.tangosol.io.WrapperOutputStream
 - 
- com.tangosol.io.PackedDataOutputStream
 
 
 
 
- 
- All Implemented Interfaces:
 com.oracle.coherence.common.io.OutputStreaming,OutputStreaming,Closeable,DataOutput,Flushable,AutoCloseable
public class PackedDataOutputStream extends WrapperOutputStream implements DataOutput
This is an imitation DataOutputStream class that packs its data tighter using variable-length integers and supports UTF longer than 64KB.Warning! This class is not intended to be thread-safe!
- Author:
 - cp 2004.09.09
 
 
- 
- 
Field Summary
- 
Fields inherited from class com.tangosol.io.WrapperOutputStream
m_out 
 - 
 
- 
Constructor Summary
Constructors Constructor Description PackedDataOutputStream(OutputStream out)Construct a PackedDataOutputStream that will output to the specified OutputStream object. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwriteBoolean(boolean f)Writes the boolean valuef.voidwriteByte(int b)Writes the eight low-order bits of the argumentb.voidwriteBytes(String s)Writes the Strings, but only the low-order byte from each character of the String is written.voidwriteChar(int ch)Writes a char value, comprised of the 16 low-order bits of the argumentch; the 16 high-order bits ofchare ignored.voidwriteChars(String s)Writes the Stringsas a sequence of characters.voidwriteDouble(double dfl)Writes a double value.voidwriteFloat(float fl)Writes a float value.voidwriteInt(int n)Writes an int value.voidwriteLong(long l)Writes a long value.voidwriteShort(int n)Writes a short value, comprised of the 16 low-order bits of the argumentn; the 16 high-order bits ofnare ignored.voidwriteUTF(String s)Writes the Stringsas a sequence of characters, but using UTF-8 encoding for the characters, and including the String length data so that the correspondingDataInput.readUTF()method can reconstitute a String from the written data.- 
Methods inherited from class com.tangosol.io.WrapperOutputStream
close, ensureOutputStream, flush, getOutputStream, setOutputStream, write, write, write 
- 
Methods inherited from class java.io.OutputStream
nullOutputStream 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface java.io.DataOutput
write, write, write 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
PackedDataOutputStream
public PackedDataOutputStream(OutputStream out)
Construct a PackedDataOutputStream that will output to the specified OutputStream object.- Parameters:
 out- an OutputStream to write to
 
 - 
 
- 
Method Detail
- 
writeBoolean
public void writeBoolean(boolean f) throws IOExceptionWrites the boolean valuef.- Specified by:
 writeBooleanin interfaceDataOutput- Parameters:
 f- the boolean to be written- Throws:
 IOException- if an I/O error occurs
 
- 
writeByte
public void writeByte(int b) throws IOExceptionWrites the eight low-order bits of the argumentb. The 24 high-order bits ofbare ignored.- Specified by:
 writeBytein interfaceDataOutput- Parameters:
 b- the byte to write (passed as an integer)- Throws:
 IOException- if an I/O error occurs
 
- 
writeShort
public void writeShort(int n) throws IOExceptionWrites a short value, comprised of the 16 low-order bits of the argumentn; the 16 high-order bits ofnare ignored.- Specified by:
 writeShortin interfaceDataOutput- Parameters:
 n- the short to write (passed as an integer)- Throws:
 IOException- if an I/O error occurs
 
- 
writeChar
public void writeChar(int ch) throws IOExceptionWrites a char value, comprised of the 16 low-order bits of the argumentch; the 16 high-order bits ofchare ignored.- Specified by:
 writeCharin interfaceDataOutput- Parameters:
 ch- the char to write (passed as an integer)- Throws:
 IOException- if an I/O error occurs
 
- 
writeInt
public void writeInt(int n) throws IOExceptionWrites an int value.- Specified by:
 writeIntin interfaceDataOutput- Parameters:
 n- the int to write- Throws:
 IOException- if an I/O error occurs
 
- 
writeLong
public void writeLong(long l) throws IOExceptionWrites a long value.- Specified by:
 writeLongin interfaceDataOutput- Parameters:
 l- the long to write- Throws:
 IOException- if an I/O error occurs
 
- 
writeFloat
public void writeFloat(float fl) throws IOExceptionWrites a float value.- Specified by:
 writeFloatin interfaceDataOutput- Parameters:
 fl- the float to write- Throws:
 IOException- if an I/O error occurs
 
- 
writeDouble
public void writeDouble(double dfl) throws IOExceptionWrites a double value.- Specified by:
 writeDoublein interfaceDataOutput- Parameters:
 dfl- the double to write- Throws:
 IOException- if an I/O error occurs
 
- 
writeBytes
public void writeBytes(String s) throws IOException
Writes the Strings, but only the low-order byte from each character of the String is written.- Specified by:
 writeBytesin interfaceDataOutput- Parameters:
 s- the String to write- Throws:
 IOException- if an I/O error occursNullPointerException- ifsisnull
 
- 
writeChars
public void writeChars(String s) throws IOException
Writes the Stringsas a sequence of characters.- Specified by:
 writeCharsin interfaceDataOutput- Parameters:
 s- the String to write- Throws:
 IOException- if an I/O error occursNullPointerException- ifsisnull
 
- 
writeUTF
public void writeUTF(String s) throws IOException
Writes the Stringsas a sequence of characters, but using UTF-8 encoding for the characters, and including the String length data so that the correspondingDataInput.readUTF()method can reconstitute a String from the written data.- Specified by:
 writeUTFin interfaceDataOutput- Parameters:
 s- the String to write- Throws:
 IOException- if an I/O error occursNullPointerException- ifsisnull
 
 - 
 
 -