public class ByteBufferOutput extends OutputStream implements ByteOutput
OutputStream implementing ByteOutput which writes to a ByteBuffer.| Constructor and Description |
|---|
ByteBufferOutput(ByteBuffer buffer)
Create a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
flush() |
void |
write(byte[] b)
Write all the bytes from the given array to the stream.
|
void |
write(byte[] b,
int off,
int len)
Write some of the bytes from the given array to the stream.
|
void |
write(int b)
Writes to the output stream the eight low-order bits of the argument
b. |
public ByteBufferOutput(ByteBuffer buffer)
buffer - the buffer to write topublic void write(int b)
throws IOException
b. The 24 high-order bits of
b are ignored.write in interface ByteOutputwrite in class OutputStreamb - the byte to writeIOException - if an error occurspublic void write(byte[] b)
throws IOException
write in interface ByteOutputwrite in class OutputStreamb - the byte arrayIOException - if an error occurspublic void write(byte[] b,
int off,
int len)
throws IOException
write in interface ByteOutputwrite in class OutputStreamb - the byte arrayoff - the index to start writing fromlen - the number of bytes to writeIOException - if an error occurspublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class OutputStreamIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in class OutputStreamIOExceptionCopyright © 2018 JBoss by Red Hat. All rights reserved.