public final class ToNetASCIIOutputStream extends FilterOutputStream
out
Constructor and Description |
---|
ToNetASCIIOutputStream(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.
|
close, flush
public ToNetASCIIOutputStream(OutputStream output)
output
- The OutputStream to wrap.public void write(int ch) throws IOException
write
in class FilterOutputStream
ch
- The byte to write.IOException
- If an error occurs while writing to the underlying
stream.public void write(byte[] buffer) throws IOException
write
in class FilterOutputStream
buffer
- The byte array to write.IOException
- If an error occurs while writing to the underlying
stream.public void write(byte[] buffer, int offset, int length) throws IOException
write
in class 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.IOException
- If an error occurs while writing to the underlying
stream.Copyright © 2001–2017 The Apache Software Foundation. All rights reserved.