|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.io.OutputStream java.io.FilterOutputStream org.apache.commons.net.io.ToNetASCIIOutputStream
public final class ToNetASCIIOutputStream
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.
Field Summary |
---|
Fields inherited from class java.io.FilterOutputStream |
---|
out |
Constructor Summary | |
---|---|
ToNetASCIIOutputStream(OutputStream output)
Creates a ToNetASCIIOutputStream instance that wraps an existing OutputStream. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.io.FilterOutputStream |
---|
close, flush |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ToNetASCIIOutputStream(OutputStream output)
output
- The OutputStream to wrap.Method Detail |
---|
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.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |