org.apache.commons.net.io
public final class ToNetASCIIOutputStream extends FilterOutputStream
Constructor Summary | |
---|---|
ToNetASCIIOutputStream(OutputStream output)
Creates a ToNetASCIIOutputStream instance that wraps an existing
OutputStream.
|
Method Summary | |
---|---|
void | write(int ch)
Writes a byte to the stream. |
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.
|
Parameters: output The OutputStream to wrap.
Parameters: ch The byte to write.
Throws: IOException If an error occurs while writing to the underlying stream.
Parameters: buffer The byte array to write.
Throws: IOException If an error occurs while writing to the underlying stream.
Parameters: 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.
Throws: IOException If an error occurs while writing to the underlying stream.