Java FTPClient不会传输整个文件
作者:互联网
我编写了一个Java类,用于从FTP服务器下载文件.一切似乎都很好,但是当我检查文件的大小时,它们比原始文件要小一些.
知道为什么会这样吗?
import java.io.FileOutputStream;
import java.io.BufferedOutputStream;
import java.io.OutputStream;
import java.io.IOException;
import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import java.io.IOException;
public class Downloader {
public static void main(String[] args) {
String server = "ftp.example.gov";
int port = 21;
String user = "anonymous";
String pass = "anonymous";
FTPClient ftpClient = new FTPClient();
try {
ftpClient.connect(server, port);
ftpClient.login(user, pass);
ftpClient.cwd("dir1/dir2/gz");
FTPFile[] files = ftpClient.listFiles();
for (FTPFile file : files) {
String downloadFile = "/home/andrej/Documents/" + file.getName();
OutputStream output = new BufferedOutputStream(new FileOutputStream(downloadFile));
boolean success = ftpClient.retrieveFile(file.getName(), output);
output.close();
if (success) {
System.out.println(file.getName());
}
}
} catch (IOException e) {
System.out.println("Error: " + e.getMessage());
e.printStackTrace();
} finally {
try {
if (ftpClient.isConnected()) {
ftpClient.logout();
ftpClient.disconnect();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
解决方法:
尝试以二进制模式下载它,您的差异可能是由于两台服务器之间的回车符不同.如果您的服务器是Windows,则将具有CRLF,而Linux仅具有New Line. ASCII模式下的FTP将自动为您进行转换.
当您比较两个文件时,它们在文本上是否相同?如果是这样,我认为您不必为此担心.
标签:ftp,ftp-client,java 来源: https://codeday.me/bug/20191028/1949753.html