Class CompositeFileEntryParser
java.lang.Object
org.apache.commons.net.ftp.FTPFileEntryParserImpl
org.apache.commons.net.ftp.parser.CompositeFileEntryParser
- All Implemented Interfaces:
FTPFileEntryParser
This implementation allows to pack some FileEntryParsers together and handle the case where the returned dir style isn't clearly defined. The matching parser
will be cached. If the cached parser won't match due to the server changed the dir style, a new matching parser will be searched.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionparseFTPEntry
(String listEntry) Parses a line of an FTP server file listing and converts it into a usable format in the form of anFTPFile
instance.Methods inherited from class org.apache.commons.net.ftp.FTPFileEntryParserImpl
preParse, readNextEntry
-
Constructor Details
-
CompositeFileEntryParser
-
-
Method Details
-
parseFTPEntry
Description copied from interface:FTPFileEntryParser
Parses a line of an FTP server file listing and converts it into a usable format in the form of anFTPFile
instance. If the file listing line doesn't describe a file,null
should be returned, otherwise aFTPFile
instance representing the files in the directory is returned.- Parameters:
listEntry
- A line of text from the file listing- Returns:
- An FTPFile instance corresponding to the supplied entry
-