FTPClient - Java,上传文件
我正在尝试进行非常简单的文件上传。我想要一个 Java FTPClient,它可以上传我告诉它的任何文件。但 pdf 总是变得一团糟,我的 pdf 编辑器 (Adobe) 无法打开它,说存在 I/O 错误。
我正在使用以下课程:
import org.apache.commons.net.ftp.FTPClient;
....
FTPClient client = new FTPClient();
FileInputStream fis = null;
try {
client.connect("mydomain.com");
client.login("user", "password");
String filename = "myPDF.pdf";
fis = new FileInputStream(filename);
client.storeFile("temp.pdf", fis);
fis.close();
client.logout();
} catch (IOException e) {
e.printStackTrace();
}
为什么这不起作用,如何修复它?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
它不起作用,因为 FTPClient 的默认传输模式是
FTP.ASCII_FILE_TYPE
。您只需更新配置即可以二进制模式传输。It doesn't work because the default transfer mode for FTPClient is
FTP.ASCII_FILE_TYPE
. You just need to update the configuration to transfer in binary mode.将其添加到您的文件中
我对 xlsx 文件也遇到了同样的问题,这是一个很好的解决方案。
Add this to your file
I had the same problem with xlsx files and this was a good solution.
人们常常忘记 FTP 有两种操作模式 - 一种用于文本文件,另一种用于二进制(图像)文件。在过去的好日子里,从命令行 ftp 客户端连接时,我们会仔细记住在请求文件之前设置传输模式 - 否则我们会遇到您似乎遇到的那种问题。如今,很多情况似乎都默认为二进制,但显然不是您的情况。
您可能需要告诉您的 ftp 实现以二进制/图像模式传输。
It's often forgotten that FTP has two modes of operation - one for text files and the other for binary (image) files. In the good old days, connecting from a command line ftp client, we'd carefully remember to set the transfer mode before requesting a file - or we'd run into exactly the sort of problem you seem to be having. Today a lot of situations seem to default to binary, but not apparently yours.
You probably need to tell your ftp implementation to transfer in binary/image mode.
尝试使用 BufferedInputStream,这是一个 (工作)代码示例:
Try to use BufferedInputStream, this is a (working) code sample:
来自 文档
因此,在调用 logout() 之前关闭 FileInputStream
From documentation
So close the FileInputStream before calling
logout()
试试这个。
Try this.
对我来说,只有 ftp.setFileType(FTP.BINARY_FILE_TYPE, FTP.BINARY_FILE_TYPE) 有效,而当我使用 ftp.setFileTransferMode(FTP.BINARY_FILE_TYPE) 文件时,文件已损坏。
For Me only ftp.setFileType(FTP.BINARY_FILE_TYPE, FTP.BINARY_FILE_TYPE) worked, while when I was using ftp.setFileTransferMode(FTP.BINARY_FILE_TYPE) File was getting corrupt.
这看起来像是Commons NET 库中的一个错误,它影响了 3.0 版本。尝试更新版本 (3.0.1),它修复了该错误。
This looks like a bug in the Commons NET library, which affected version 3.0. Try a newer version (3.0.1), which fixed the bug.