jar包commons-net-2.2.jar
引用org.apache.commons.net.ftp.*
FTPFile[] fs = ftpClient.listFiles();
获取指定目录文件名列表,
之前一直这样用,在linux上和windows上都没问题,今天不知道为什么fs长度一直是0,无法获取文件列表错误提示:
org.eclipse.debug.core.DebugException: com.sun.jdi.ClassNotLoadedException: Type has not been loaded occurred while retrieving component type of array.
而且fs不会阻塞住。
在网上找资料,说加上ftpClient.enterLocalPassiveMode();
测试能够读取ftp文件列表
参考:http://www.iteye.com/problems/39038
http://icelander.iteye.com/blog/1313986
第二个网址对ftpClient.enterLocalPassiveMode()的解释和我遇到的问题不同