我正在使用apache commons net library从FTP服务器获取文件。
我不需要下载整个文件,只是为了读取标题来确定文件大小。我用来执行此操作的库是metadata extractor
问题在于,当我调用 client.completePendingCommand()时,它总是返回false - 但是日期变量是正确打印的。我问过元数据提取器的开发人员,他不知道为什么返回false。有人有解释吗?我不确定是否可以忽略这个错误?
FTPClient client = new FTPHTTPClient(proxy settings);
InputStream stream = null;
try {
client.connect(FTPProperties.getInstance().getProperty("ftp.server"));
client.login(FTPProperties.getInstance().getProperty("ftp.username"), FTPProperties.getInstance().getProperty("ftp.password"));
client.enterLocalPassiveMode();
for (String path : paths) { //paths are the jpeg files to download
try {
stream = client.retrieveFileStream(p);
Metadata metadata = ImageMetadataReader.readMetadata(stream);
Directory directory = metadata.getDirectory(ExifSubIFDDirectory.class);
Date date = directory.getDate(ExifSubIFDDirectory.TAG_DATETIME_ORIGINAL);
System.out.println("DATE " + date);
} catch (IOException ex) {
Logger.getLogger(UploadImage.class.getName()).log(Level.SEVERE, null, ex);
} finally {
if(stream != null) {
stream.close();
}
if (in != null) {
in.close();
}
if (!client.completePendingCommand()) {
Logger.getLogger("Error");
}
}
}
} catch (Exception ex) {
Logger.getLogger(UploadImage.class.getName()).log(Level.SEVERE, null, ex);
} finally {
if (client != null && client.isConnected()) {
client.disconnect();
}
}
答案 0 :(得分:2)
我不认为你做错了什么,我认为元数据提取器没有任何问题。您可能最好检查您正在检索的流可以正确处理,而不是使用completePendingCommand()作为成功的指示。如果出现问题,元数据提取器可能已经通过抛出异常为您执行此操作。
<强>说明:强> completePendingCommand()验证整个事务是否成功,成功或失败依赖于FTPClients应答代码,其范围为200&lt; = replyCode&lt; 300(http://commons.apache.org/proper/commons-net/apidocs/src-html/org/apache/commons/net/ftp/FTPReply.html#line.133)。
我遇到了类似的问题,发现我的FTPClient对象的回复代码为150,表示根据FTP服务器,该事务尚未完成。答复代码150是肯定的初步答复,但未被分类为肯定完成答复(http://tools.ietf.org/html/rfc959第37页)。我的观点是响应仍然是积极的,虽然我认为我已经完成了交易,但FTP服务器仍然认为我需要做一些事情。这可能是org.apache.commons.net.ftp.FTPClient或它正在与之交互的FTP服务器的问题。