Package org.apache.commons.net.ftp
Class FTPFileEntryParserImpl
java.lang.Object
org.apache.commons.net.ftp.FTPFileEntryParserImpl
- All Implemented Interfaces:
- FTPFileEntryParser
- Direct Known Subclasses:
- CompositeFileEntryParser,- MLSxEntryParser,- RegexFTPFileEntryParserImpl
This abstract class implements both the older FTPFileListParser and newer FTPFileEntryParser interfaces with default functionality. All the classes in the
 parser subpackage inherit from this.
- 
Constructor SummaryConstructorsConstructorDescriptionThe constructor for a FTPFileEntryParserImpl object.
- 
Method SummaryModifier and TypeMethodDescriptionThis method is a hook for those implementors (such as VMSVersioningFTPEntryParser, and possibly others) which need to perform some action upon the FTPFileList after it has been created from the server stream, but before any clients see the list.readNextEntry(BufferedReader reader) Reads the next entry using the supplied BufferedReader object up to whatever delimits one entry from the next.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.commons.net.ftp.FTPFileEntryParserparseFTPEntry
- 
Constructor Details- 
FTPFileEntryParserImplpublic FTPFileEntryParserImpl()The constructor for a FTPFileEntryParserImpl object.
 
- 
- 
Method Details- 
preParseThis method is a hook for those implementors (such as VMSVersioningFTPEntryParser, and possibly others) which need to perform some action upon the FTPFileList after it has been created from the server stream, but before any clients see the list. This default implementation does nothing.- Specified by:
- preParsein interface- FTPFileEntryParser
- Parameters:
- original- Original list after it has been created from the server stream
- Returns:
- originalunmodified.
 
- 
readNextEntryReads the next entry using the supplied BufferedReader object up to whatever delimits one entry from the next. This default implementation simply calls BufferedReader.readLine().- Specified by:
- readNextEntryin interface- FTPFileEntryParser
- Parameters:
- reader- The BufferedReader object from which entries are to be read.
- Returns:
- A string representing the next ftp entry or null if none found.
- Throws:
- IOException- thrown on any IO Error reading from the reader.
 
 
-