org.apache.commons.net.ftp |
|
Java Source File Name | Type | Comment |
AllTests.java | Class | Test suite for the org.apache.commons.net.ftp package. |
Configurable.java | Interface | This interface adds the aspect of configurability by means of
a supplied FTPClientConfig object to other classes in the
system, especially listing parsers. |
DefaultFTPFileListParser.java | Class | DefaultFTPFileListParser is the default implementation of
org.apache.commons.net.ftp.FTPFileListParser used by
org.apache.commons.net.ftp.FTPClient to parse file listings.
Sometimes you will want to parse unusual listing formats, in which
case you would create your own implementation of FTPFileListParser and
if necessary, subclass FTPFile.
As of version 1.2, this class merely extends UnixFTPEntryParser.
It will be removed in version 2.0.
author: Daniel F. |
FTP.java | Class | FTP provides the basic the functionality necessary to implement your
own FTP client. |
FTPClient.java | Class | FTPClient encapsulates all the functionality necessary to store and
retrieve files from an FTP server. |
FTPClientConfig.java | Class |
This class implements an alternate means of configuring the
org.apache.commons.net.ftp.FTPClient FTPClient object and
also subordinate objects which it uses. |
FTPClientConfigFunctionalTest.java | Class | |
FTPClientConfigTest.java | Class | |
FTPCommand.java | Class | FTPCommand stores a set of constants for FTP command codes. |
FTPConnectionClosedException.java | Class | FTPConnectionClosedException is used to indicate the premature or
unexpected closing of an FTP connection resulting from a
org.apache.commons.net.ftp.FTPReply.SERVICE_NOT_AVAILABLE FTPReply.SERVICE_NOT_AVAILABLE response (FTP reply code 421) to a
failed FTP command. |
FTPFile.java | Class | The FTPFile class is used to represent information about files stored
on an FTP server. |
FTPFileEntryParser.java | Interface | FTPFileEntryParser defines the interface for parsing a single FTP file
listing and converting that information into an
org.apache.commons.net.ftp.FTPFile instance.
Sometimes you will want to parse unusual listing formats, in which
case you would create your own implementation of FTPFileEntryParser and
if necessary, subclass FTPFile.
Here are some examples showing how to use one of the classes that
implement this interface.
The first example shows how to get an iterable list of files in which the
more expensive FTPFile objects are not created until needed. |
FTPFileEntryParserImpl.java | Class | This abstract class implements both the older FTPFileListParser and
newer FTPFileEntryParser interfaces with default functionality. |
FTPFileIterator.java | Class | This class implements a bidirectional iterator over an FTPFileList.
Elements may be retrieved one at at time using the hasNext() - next()
syntax familiar from Java 2 collections. |
FTPFileList.java | Class | This class encapsulates a listing of files from an FTP server. |
FTPFileListParser.java | Interface | FTPFileListParser defines the interface for parsing FTP file listings
and converting that information into an array of
org.apache.commons.net.ftp.FTPFile instances.
Sometimes you will want to parse unusual listing formats, in which
case you would create your own implementation of FTPFileListParser and
if necessary, subclass FTPFile.
author: Daniel F. |
FTPFileListParserImpl.java | Class | This abstract class implements both the older FTPFileListParser and
newer FTPFileEntryParser interfaces with default functionality. |
FTPListParseEngine.java | Class | This class handles the entire process of parsing a listing of
file entries from the server.
This object defines a two-part parsing mechanism.
The first part is comprised of reading the raw input into an internal
list of strings. |
FTPReply.java | Class | FTPReply stores a set of constants for FTP reply codes. |
ListingFunctionalTest.java | Class | A functional test suite for checking that site listings work.
author: Jeffrey D. |