
public class SimpleDataOutput extends ByteOutputStream implements java.io.DataOutput
DataOutput which wraps a ByteOutput. This implementation maintains
an internal buffer.| Modifier and Type | Field and Description |
|---|---|
protected byte[] |
buffer
The internal buffer.
|
protected int |
bufferSize
The size of the internal buffer.
|
byteOutput| Constructor and Description |
|---|
SimpleDataOutput(ByteOutput byteOutput)
Construct a new instance with a default buffer size.
|
SimpleDataOutput(int bufferSize)
Construct a new instance.
|
SimpleDataOutput(int bufferSize,
ByteOutput byteOutput)
Construct a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
protected void |
finish()
Finish writing to a stream.
|
void |
flush() |
protected void |
shallowFlush()
This shallow flush will write the internal buffer out to the
ByteOutput, but will not flush it. |
protected void |
start(ByteOutput byteOutput)
Begin writing to a stream.
|
void |
write(byte[] bytes)
Write all the bytes from the given array to the stream.
|
void |
write(byte[] bytes,
int off,
int len)
Write some of the bytes from the given array to the stream.
|
void |
write(int v)
Writes to the output stream the eight low-order bits of the argument
b. |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(java.lang.String s) |
void |
writeChar(int v) |
void |
writeChars(java.lang.String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeShort(int v) |
void |
writeUTF(java.lang.String s) |
protected final int bufferSize
protected byte[] buffer
public SimpleDataOutput(int bufferSize)
bufferSize - the buffer sizepublic SimpleDataOutput(int bufferSize,
ByteOutput byteOutput)
bufferSize - the buffer sizebyteOutput - the byte output to wrappublic SimpleDataOutput(ByteOutput byteOutput)
byteOutput - the byte output to wrappublic void write(int v)
throws java.io.IOException
b. The 24 high-order bits of
b are ignored.write in interface java.io.DataOutputwrite in interface ByteOutputwrite in class ByteOutputStreamv - the byte to writejava.io.IOException - if an error occurspublic void write(byte[] bytes)
throws java.io.IOException
write in interface java.io.DataOutputwrite in interface ByteOutputwrite in class ByteOutputStreambytes - the byte arrayjava.io.IOException - if an error occurspublic void write(byte[] bytes,
int off,
int len)
throws java.io.IOException
write in interface java.io.DataOutputwrite in interface ByteOutputwrite in class ByteOutputStreambytes - the byte arrayoff - the index to start writing fromlen - the number of bytes to writejava.io.IOException - if an error occurspublic void writeBoolean(boolean v)
throws java.io.IOException
writeBoolean in interface java.io.DataOutputjava.io.IOExceptionpublic void writeByte(int v)
throws java.io.IOException
writeByte in interface java.io.DataOutputjava.io.IOExceptionpublic void writeShort(int v)
throws java.io.IOException
writeShort in interface java.io.DataOutputjava.io.IOExceptionpublic void writeChar(int v)
throws java.io.IOException
writeChar in interface java.io.DataOutputjava.io.IOExceptionpublic void writeInt(int v)
throws java.io.IOException
writeInt in interface java.io.DataOutputjava.io.IOExceptionpublic void writeLong(long v)
throws java.io.IOException
writeLong in interface java.io.DataOutputjava.io.IOExceptionpublic void writeFloat(float v)
throws java.io.IOException
writeFloat in interface java.io.DataOutputjava.io.IOExceptionpublic void writeDouble(double v)
throws java.io.IOException
writeDouble in interface java.io.DataOutputjava.io.IOExceptionpublic void writeBytes(java.lang.String s)
throws java.io.IOException
writeBytes in interface java.io.DataOutputjava.io.IOExceptionpublic void writeChars(java.lang.String s)
throws java.io.IOException
writeChars in interface java.io.DataOutputjava.io.IOExceptionpublic void writeUTF(java.lang.String s)
throws java.io.IOException
writeUTF in interface java.io.DataOutputjava.io.IOExceptionpublic void flush()
throws java.io.IOException
flush in interface java.io.Flushableflush in class ByteOutputStreamjava.io.IOExceptionprotected void shallowFlush()
throws java.io.IOException
ByteOutput, but will not flush it.java.io.IOException - if an I/O error occursprotected void start(ByteOutput byteOutput) throws java.io.IOException
byteOutput - the new streamjava.io.IOException - if an error occursprotected void finish()
throws java.io.IOException
start(ByteOutput) method is again invoked.java.io.IOException - if an error occurspublic void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class ByteOutputStreamjava.io.IOExceptionCopyright © 2011 JBoss, a division of Red Hat, Inc.