When uploading a file and by the way, file name garbled and file content garbled solution

Source: Internet
Author: User

1. File name garbled

This is because of the problem of compressing the File's package (that is, the class):

Import java.util.zip.ZipOutputStream;

This introduction of the package on Chinese garbled, on the numbers and letters nothing;

Solve:

This package should be introduced:

Import org.apache.tools.zip.ZipOutputStream;

Import org.apache.tools.zip.ZipEntry;
Import java.nio.charset.Charset;

2. File Contents garbled:

Outputstream.putnextentry (new ZipEntry (fileName)); Create a portal that points to the compressed original file
Outputstream.setencoding ("GBK");
byte[] buffer = new Byte[2048];////output data to a compressed file
int len=0;
while ((len=filein.read (buffer)) >0)
{
Outputstream.write (buffer);
Outputstream.write (buffer, 0, len);
}
Outputstream.closeentry ();
Filein.close ();
Outputstream.close ();

should be greater than 0, (>0), to solve the problem of garbled file contents

When uploading a file and by the way, file name garbled and file content garbled solution

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.