首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

Commons-net FTPClient completePendingCommand()常常使程序死掉的原因分析以及解决方式

2012-06-28 
Commons-net FTPClient completePendingCommand()经常使程序死掉的原因分析以及解决方式commons-net的FTPC

Commons-net FTPClient completePendingCommand()经常使程序死掉的原因分析以及解决方式

commons-net的FTPClient,在使用public InputStream retrieveFileStream(String remote)
方法时需要特别注意,在调用这个接口后,一定要手动close掉返回的InputStream,然后再调用completePendingCommand方法,若不是按照这个顺序,则不对,伪代码:
    InputStream?is?=?ftpClient.retrieveFileStream(remote);
  1. is.close();ftpClient.completePendingCommand();
retrieveFileStream的API文档说的有点罗嗦,还可以使用下列方法来替换上述使用方式使用一个中间文件来做一个转接,这种方式比上述方法的好处就是自己容易控制,不容易出问题。伪代码如下:
    File?localFile?=?new?File(localPath,?localFileName);
  1. OutputStream?output?=?new?FileOutputStream(localFile);ftpClient.retrieveFile(remoteFileName,?output);
  2. output.close();InputStream?input?=?new?FileInputStream(localFile);
关于原因这里有比较具体的分析:http://marc.info/?l=jakarta-commons-user&m=110443645016720&w=2简单来说:completePendingCommand()会一直在等FTP Server返回226 Transfer complete,但是FTP Server只有在接受到InputStream执行close方法时,才会返回。所以先要执行close方法

热点排行