FtpClient the solution to the corrupted zip file when uploading files

Source: Internet
Author: User

With the Apache ftpclient upload file found a problem, is to upload txt file no problem, but upload zip file will be damaged, check the reason, the original is this:

Because the default transport mode in RFC 959 is supposed to be ASCII, the Org.apache.commons.net.ftp.FTPClient implementation also adheres to this standard. So org.apache.commons.net.ftp.FTPClient is transmitted in ASCII form by default, and if you are a binary binary file (such as a zip), then the uploaded file will be corrupted. However, transferring ASCII files (such as TXT) is not a problem.

So if you are transferring the binary binaries, you need to set up the file type after the connection, login, and the following code example:
Ftpclient.connect (host);
Ftpclient.login (user, password);
Ftpclient.setfiletype (Ftpclient.binary_file_type);

It's OK now.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.