| java.lang.Object java.io.OutputStream java.io.FilterOutputStream org.apache.commons.net.io.ToNetASCIIOutputStream
ToNetASCIIOutputStream | final public class ToNetASCIIOutputStream extends FilterOutputStream (Code) | | This class wraps an output stream, replacing all singly occurring
<LF> (linefeed) characters with <CR><LF> (carriage return
followed by linefeed), which is the NETASCII standard for representing
a newline.
You would use this class to implement ASCII file transfers requiring
conversion to NETASCII.
author: Daniel F. Savarese |
Method Summary | |
public synchronized void | write(int ch) Writes a byte to the stream. | public synchronized void | write(byte buffer) Writes a byte array to the stream. | public synchronized 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. |
ToNetASCIIOutputStream | public ToNetASCIIOutputStream(OutputStream output)(Code) | | Creates a ToNetASCIIOutputStream instance that wraps an existing
OutputStream.
Parameters: output - The OutputStream to wrap. |
write | public synchronized void write(int ch) throws IOException(Code) | | Writes a byte to the stream. Note that a call to this method
may result in multiple writes to the underlying input stream in order
to convert naked newlines to NETASCII line separators.
This is transparent to the programmer and is only mentioned for
completeness.
Parameters: ch - The byte to write. exception: IOException - If an error occurs while writing to the underlyingstream. |
write | public synchronized void write(byte buffer) throws IOException(Code) | | Writes a byte array to the stream.
Parameters: buffer - The byte array to write. exception: IOException - If an error occurs while writing to the underlyingstream. |
write | public synchronized void write(byte buffer, int offset, int length) throws IOException(Code) | | Writes a number of bytes from a byte array to the stream starting from
a given offset.
Parameters: buffer - The byte array to write. Parameters: offset - The offset into the array at which to start copying data. Parameters: length - The number of bytes to write. exception: IOException - If an error occurs while writing to the underlyingstream. |
|
|