Java Encryption Decompression Class library

Source: Internet
Author: User

Java Compression Class Library _ support encryption decompression. zip

public static void Unzip (File zipfile, String dest, String passwd) throws Zipexception {
ZipFile zfile = new ZipFile (ZipFile); First create the ZipFile point to the. zip file on the disk
Zfile.setfilenamecharset ("GBK"); Set the file name encoding to be set in the GBK system
if (!zfile.isvalidzipfile ()) {//verify that the. zip file is valid, including whether the file exists, is a zip file, is corrupted, etc.
throw new Zipexception ("The compressed file is illegal and may be corrupted.");
}
File DestDir = new file (dest); Unzip Directory
if (Destdir.isdirectory () &&!destdir.exists ()) {
Destdir.mkdir ();
}
if (zfile.isencrypted ()) {
Zfile.setpassword (Passwd.tochararray ()); Set Password
}
Zfile.extractall (dest); Extract the files to the Extract directory (unzip)
}

Package:http://download.csdn.net/detail/cmf34263/8849491

Java Encryption Decompression Class library

Related Article

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.