繁体   English   中英

Java为什么Java ftp上传文件损坏

[英]Java why java ftp uploads file corrupted

我正在尝试将图像上传到我的服务器,但是当我尝试打开该图像时-无法打开,显然是因为它已损坏。 有人可以帮我,告诉我为什么吗? 谢谢!
我正在使用Apache Commons Net jar。

String hostName = "host";
String username = "username";
String password = "pass";
String location = "filePath.png";
FTPClient ftp = null;

InputStream in = null;
try {
    ftp = new FTPClient();
    ftp.connect(hostName);
    ftp.login(username, password);

    ftp.changeWorkingDirectory("/pictures");

    int reply = ftp.getReplyCode();
    System.out.println("Received Reply from FTP Connection:" + reply);

    if(FTPReply.isPositiveCompletion(reply))
    {
        System.out.println("Connected Success");
    }

    ftp.setFileType(FTP.BINARY_FILE_TYPE);

    File f1 = new File(location);
    in = new FileInputStream(f1);

    ftp.storeFile("fileName.png",in);

    System.out.println("SUCCESS");

    in.close();
    ftp.logout();
    ftp.disconnect();
} catch (Exception e) {
    e.printStackTrace();
}

我的防病毒软件阻止了它。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM