public class OutputStreamDataOutput extends DataOutput implements Closeable
DataOutput
wrapping a plain OutputStream
.Constructor and Description |
---|
OutputStreamDataOutput(OutputStream os) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
writeByte(byte b)
Writes a single byte.
|
void |
writeBytes(byte[] b,
int offset,
int length)
Writes an array of bytes.
|
copyBytes, writeBytes, writeChars, writeChars, writeInt, writeLong, writeShort, writeString, writeStringStringMap, writeVInt, writeVLong
public OutputStreamDataOutput(OutputStream os)
public void writeByte(byte b) throws IOException
DataOutput
writeByte
in class DataOutput
IOException
DataInput.readByte()
public void writeBytes(byte[] b, int offset, int length) throws IOException
DataOutput
writeBytes
in class DataOutput
b
- the bytes to writeoffset
- the offset in the byte arraylength
- the number of bytes to writeIOException
DataInput.readBytes(byte[],int,int)
public void close() throws IOException
close
in interface Closeable
IOException