FTPClient - Java, upload file

后端 未结 8 935
遇见更好的自我
遇见更好的自我 2020-12-08 19:58

I\'m trying to do a VERY simple file upload. I want a Java FTPClient that can upload any file I tell it to. But the pdf always gets all messed up and my pdf editor (Adobe) w

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 20:46

    Add this to your file

    ftp.setFileType(FTP.BINARY_FILE_TYPE, FTP.BINARY_FILE_TYPE);
    ftp.setFileTransferMode(FTP.BINARY_FILE_TYPE);
    

    I had the same problem with xlsx files and this was a good solution.

提交回复
热议问题