public abstract class FTPFileEntryParserImpl extends java.lang.Object implements FTPFileEntryParser
| 构造器和说明 | 
|---|
| FTPFileEntryParserImpl()The constructor for a FTPFileEntryParserImpl object. | 
| 限定符和类型 | 方法和说明 | 
|---|---|
| java.util.List<java.lang.String> | preParse(java.util.List<java.lang.String> original)This 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. | 
| java.lang.String | readNextEntry(java.io.BufferedReader reader)Reads the next entry using the supplied BufferedReader object up to
 whatever delimits one entry from the next. | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitparseFTPEntrypublic FTPFileEntryParserImpl()
public java.lang.String readNextEntry(java.io.BufferedReader reader)
                               throws java.io.IOException
readNextEntry 在接口中 FTPFileEntryParserreader - The BufferedReader object from which entries are to be
 read.java.io.IOException - thrown on any IO Error reading from the reader.public java.util.List<java.lang.String> preParse(java.util.List<java.lang.String> original)
preParse 在接口中 FTPFileEntryParseroriginal - Original list after it has been created from the server streamoriginal unmodified.