public final class ToNetASCIIOutputStream
extends java.io.FilterOutputStream
Constructor and Description |
---|
ToNetASCIIOutputStream(java.io.OutputStream output)
Creates a ToNetASCIIOutputStream instance that wraps an existing
OutputStream.
|
Modifier and Type | Method and Description |
---|---|
void |
write(byte[] buffer)
Writes a byte array to the stream.
|
void |
write(byte[] buffer,
int offset,
int length)
Writes a number of bytes from a byte array to the stream starting from
a given offset.
|
void |
write(int ch)
Writes a byte to the stream.
|
public ToNetASCIIOutputStream(java.io.OutputStream output)
output
- The OutputStream to wrap.public void write(int ch) throws java.io.IOException
write
in class java.io.FilterOutputStream
ch
- The byte to write.java.io.IOException
- If an error occurs while writing to the underlying
stream.public void write(byte[] buffer) throws java.io.IOException
write
in class java.io.FilterOutputStream
buffer
- The byte array to write.java.io.IOException
- If an error occurs while writing to the underlying
stream.public void write(byte[] buffer, int offset, int length) throws java.io.IOException
write
in class java.io.FilterOutputStream
buffer
- The byte array to write.offset
- The offset into the array at which to start copying data.length
- The number of bytes to write.java.io.IOException
- If an error occurs while writing to the underlying
stream.