我正在尝试使用org.apache.commons从Java下载FTP文件。
try {
OutputStream os = new FileOutputStream(downloadedFile);
boolean success = this.client.retrieveFile(from, os);
System.out.println("File transfer status is "+ Boolean.toString(success));
os.close();
} catch (IOException e) {
System.err.println(e.getMessage());
}
文件正在下载,但有些图片有错误,如无效图片,另一个看起来像 https://www.dropbox.com/s/faozfxzag5xrk5z/Screenshot_3.png
有什么想法吗? THX
答案 0 :(得分:0)