public class ExposedDataOutputStream
extends java.io.DataOutputStream
| Constructor and Description |
|---|
ExposedDataOutputStream(java.io.OutputStream out)
Creates a new data output stream to write data to the specified
underlying output stream.
|
| Modifier and Type | Method and Description |
|---|---|
java.io.OutputStream |
getOutputStream() |
void |
reset() |
void |
write(byte[] b,
int off,
int len)
Writes
len bytes from the specified byte array
starting at offset off to the underlying output stream. |
void |
write(int b) |
flush, size, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTFpublic ExposedDataOutputStream(java.io.OutputStream out)
written is
set to zero.out - the underlying output stream, to be saved for later
use.FilterOutputStream.outpublic void reset()
public java.io.OutputStream getOutputStream()
public void write(int b)
throws java.io.IOException
write in interface java.io.DataOutputwrite in class java.io.DataOutputStreamjava.io.IOExceptionpublic void write(byte[] b,
int off,
int len)
throws java.io.IOException
len bytes from the specified byte array
starting at offset off to the underlying output stream.
If no exception is thrown, the counter written is
incremented by len.write in interface java.io.DataOutputwrite in class java.io.DataOutputStreamb - the data.off - the start offset in the data.len - the number of bytes to write.java.io.IOException - if an I/O error occurs.FilterOutputStream.outCopyright © 1998-2012 Bela Ban / Red Hat. All Rights Reserved.