org.apache.commons.net.io |
|
Java Source File Name | Type | Comment |
CopyStreamAdapter.java | Class | The CopyStreamAdapter will relay CopyStreamEvents to a list of listeners
when either of its bytesTransferred() methods are called. |
CopyStreamEvent.java | Class | A CopyStreamEvent is triggered after every write performed by a
stream copying operation. |
CopyStreamException.java | Class | The CopyStreamException class is thrown by the org.apache.commons.io.Util
copyStream() methods. |
CopyStreamListener.java | Interface | The CopyStreamListener class can accept CopyStreamEvents to keep track
of the progress of a stream copying operation. |
DotTerminatedMessageReader.java | Class | DotTerminatedMessageReader is a class used to read messages from a
server that are terminated by a single dot followed by a
<CR><LF>
sequence and with double dots appearing at the begining of lines which
do not signal end of message yet start with a dot. |
DotTerminatedMessageWriter.java | Class | DotTerminatedMessageWriter is a class used to write messages to a
server that are terminated by a single dot followed by a
<CR><LF>
sequence and with double dots appearing at the begining of lines which
do not signal end of message yet start with a dot. |
FromNetASCIIInputStream.java | Class | This class wraps an input stream, replacing all occurrences
of <CR><LF> (carriage return followed by a linefeed),
which is the NETASCII standard for representing a newline, with the
local line separator representation. |
FromNetASCIIOutputStream.java | Class | This class wraps an output stream, replacing all occurrences
of <CR><LF> (carriage return followed by a linefeed),
which is the NETASCII standard for representing a newline, with the
local line separator representation. |
SocketInputStream.java | Class | This class wraps an input stream, storing a reference to its originating
socket. |
SocketOutputStream.java | Class | This class wraps an output stream, storing a reference to its originating
socket. |
ToNetASCIIInputStream.java | Class | This class wraps an input 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. |
ToNetASCIIOutputStream.java | Class | 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. |
Util.java | Class | The Util class cannot be instantiated and stores short static convenience
methods that are often quite useful.
See Also: CopyStreamException See Also: CopyStreamListener See Also: CopyStreamAdapter author: Daniel F. |