如何用java 将文件加密压缩为zip文件.

如何用java语言 将文件加密压缩为zip,
最头疼的是加密,加了密码后,可以用压缩工具通过密码打开.
请懂的人指点迷津,是否感谢!

用java加密压缩zip文件:
package com.ninemax.demo.zip.decrypt;

import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.zip.DataFormatException;

import org.apache.commons.io.FileUtils;

import de.idyl.winzipaes.AesZipFileDecrypter;
import de.idyl.winzipaes.AesZipFileEncrypter;
import de.idyl.winzipaes.impl.AESDecrypter;
import de.idyl.winzipaes.impl.AESDecrypterBC;
import de.idyl.winzipaes.impl.AESEncrypter;
import de.idyl.winzipaes.impl.AESEncrypterBC;
import de.idyl.winzipaes.impl.ExtZipEntry;

/**
* 压缩指定文件或目录为ZIP格式压缩文件
* 支持中文(修改源码后)
* 支持密码(仅支持256bit的AES加密解密)
* 依赖bcprov项目(bcprov-jdk16-140.jar)
*
* @author zyh
*/
public class DecryptionZipUtil {

/**
* 使用指定密码将给定文件或文件夹压缩成指定的输出ZIP文件
* @param srcFile 需要压缩的文件或文件夹
* @param destPath 输出路径
* @param passwd 压缩文件使用的密码
*/
public static void zip(String srcFile,String destPath,String passwd) {
AESEncrypter encrypter = new AESEncrypterBC();
AesZipFileEncrypter zipFileEncrypter = null;
try {
zipFileEncrypter = new AesZipFileEncrypter(destPath, encrypter);
/**
* 此方法是修改源码后添加,用以支持中文文件名
*/
zipFileEncrypter.setEncoding("utf8");
File sFile = new File(srcFile);
/**
* AesZipFileEncrypter提供了重载的添加Entry的方法,其中:
* add(File f, String passwd)
* 方法是将文件直接添加进压缩文件
*
* add(File f, String pathForEntry, String passwd)
* 方法是按指定路径将文件添加进压缩文件
* pathForEntry - to be used for addition of the file (path within zip file)
*/
doZip(sFile, zipFileEncrypter, "", passwd);
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
zipFileEncrypter.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

/**
* 具体压缩方法,将给定文件添加进压缩文件中,并处理压缩文件中的路径
* @param file 给定磁盘文件(是文件直接添加,是目录递归调用添加)
* @param encrypter AesZipFileEncrypter实例,用于输出加密ZIP文件
* @param pathForEntry ZIP文件中的路径
* @param passwd 压缩密码
* @throws IOException
*/
private static void doZip(File file, AesZipFileEncrypter encrypter,
String pathForEntry, String passwd) throws IOException {
if (file.isFile()) {
pathForEntry += file.getName();
encrypter.add(file, pathForEntry, passwd);
return;
}
pathForEntry += file.getName() + File.separator;
for(File subFile : file.listFiles()) {
doZip(subFile, encrypter, pathForEntry, passwd);
}
}

/**
* 使用给定密码解压指定压缩文件到指定目录
* @param inFile 指定Zip文件
* @param outDir 解压目录
* @param passwd 解压密码
*/
public static void unzip(String inFile, String outDir, String passwd) {
File outDirectory = new File(outDir);
if (!outDirectory.exists()) {
outDirectory.mkdir();
}
AESDecrypter decrypter = new AESDecrypterBC();
AesZipFileDecrypter zipDecrypter = null;
try {
zipDecrypter = new AesZipFileDecrypter(new File(inFile), decrypter);
AesZipFileDecrypter.charset = "utf-8";
/**
* 得到ZIP文件中所有Entry,但此处好像与JDK里不同,目录不视为Entry
* 需要创建文件夹,entry.isDirectory()方法同样不适用,不知道是不是自己使用错误
* 处理文件夹问题处理可能不太好
*/
List<ExtZipEntry> entryList = zipDecrypter.getEntryList();
for(ExtZipEntry entry : entryList) {
String eName = entry.getName();
String dir = eName.substring(0, eName.lastIndexOf(File.separator) + 1);
File extractDir = new File(outDir, dir);
if (!extractDir.exists()) {
FileUtils.forceMkdir(extractDir);
}
/**
* 抽出文件
*/
File extractFile = new File(outDir + File.separator + eName);
zipDecrypter.extractEntry(entry, extractFile, passwd);
}
} catch (IOException e) {
e.printStackTrace();
} catch (DataFormatException e) {
e.printStackTrace();
} finally {
try {
zipDecrypter.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

/**
* 测试
* @param args
*/
public static void main(String[] args) {
/**
* 压缩测试
* 可以传文件或者目录
*/
// zip("M:\\ZIP\\test\\bb\\a\\t.txt", "M:\\ZIP\\test\\temp1.zip", "zyh");
// zip("M:\\ZIP\\test\\bb", "M:\\ZIP\\test\\temp2.zip", "zyh");

unzip("M:\\ZIP\\test\\temp2.zip", "M:\\ZIP\\test\\temp", "zyh");
}
}
压缩多个文件时,有两个方法(第一种没试):
(1) 预先把多个文件压缩成zip,然后调用enc.addAll(inZipFile, password);方法将多个zip文件加进来。
(2)针对需要压缩的文件循环调用enc.add(inFile, password);,每次都用相同的密码。
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-12-09
下面是代码框架:
FileOutputStream fout=new FileOutputStream("a.zip");
ZipOutputStream zout=new ZipOutputStream(fount);
如果是多个文件的话,都要执行下面语句
ZipEntry ze=new ZipEntry(filename);
zout.putNextEntry(ze);
send Date to zout;//自己编辑
zout.closeEntry();
zout.close();
//参考java核心技术。加密不会本回答被网友采纳
第2个回答  2011-12-11
补充一下,加密用CipherInputStream、CipherOutputStream均可实现

如何在Java中加密和解密zip文件?
使用addFolder替换addFile方法,即可压缩文件夹。创建分割压缩文件,利用createSplitZipFile或createSplitZipFileFromFolder方法,设置splitLength字节单位。提取所有文件使用extractAll方法从compressed.zip文件中。提取单个文件则通过extractFile方法实现。综上所述,通过Zip4j库,我们掌握了在Java中创建受密码保护的zi...

如何使用java压缩文件夹成为zip包
使用ZipEntry的构造方法可以创建一个zip压缩文件包的实例,然后通过ZipOutputStream将待压缩的文件以流的形式写进该压缩包中。具体实现代码如下:import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileN...

java 如何将 txt 文件 变成zip压缩文件? 求例子!!
import java.io.*;import java.util.zip.ZipEntry;import java.util.zip.ZipOutputStream;public class ZipOutputStreamDemo { public static void main(String args[]) throws IOException { \/\/定义要压缩的文件 也就是说在D盘里有个 demo.txt 的文件(必须要有,否者会有异常,实际应用中可判断);...

Java实现文件压缩与解压[zip格式,gzip格式]
使用ZIP格式对多个文件进行压缩与解压时,Java的ZIP类库提供了全面的支持,能够将多个文件压缩成一个压缩包。这个类库使用标准ZIP格式,与多种压缩工具兼容。ZipOutputStream类提供了设置压缩方法和压缩级别的能力。zipOutputStream.setMethod(int method)用于设置默认压缩方法,而zipOutputStream.setLevel(int le...

java多线程压缩ZIP文件
多线程压缩ZIP文件是提高生成压缩包效率的有效方式。此过程通常分为两种主要方法。第一种方法利用多线程读取源文件,并由单线程负责将文件写入ZIP文件中。首先,通过递归获取文件列表,然后使用多线程进行文件读取操作。读取完成后,使用加锁机制确保文件写入ZIP的顺序性。在写入ZIP文件时,只能通过逐个设置Zip...

java怎么将文件打包成zip包,并且源文件还在,只是多了个zip包,网上多是...
选择这个添加到压缩文件,就是保留之前的,多出一份压缩的啊

...并且将该文件压缩成ZIP格式后再写到硬盘上?
zipOut.putNextEntry(entry);\/\/将entry加入到zipOut中。DataOutputStream dataOs = new DataOutputStream(zipOut);\/\/利用DataOutputStream对ZipOutputStream进行包装。dataOs.writeUTF(gd);\/\/输出zip文件。dataOs.close();} 运行后,在D盘里就有一个test.zip文件,里包含的就是一个test.xml文件了。

用java小应用程序实现文件压缩、解压缩?
import java.util.zip.*;\/ \/\/创建文件输入流对象 FileInputStream fis=new FileInputStream(%%1);\/\/创建文件输出流对象 FileOutputStream fos=new FileOutputStream(%%2);\/\/创建ZIP数据输出流对象 ZipOutputStream zipOut=new ZipOutputStream(fos);\/\/创建指向压缩原始文件的入口 ZipEntry entry=new ...

java课程设计:将当前的窗体对象压缩成zip文件 。
将窗体和窗体涉及到的类的class文件放在一个包中 在与该包同目录下建个1.txt文件,打开该文件,在里面写入Main-Class:(这有个空格)包名.类名(主函数所在的那个类)最后回车点保存。在dos命令行里,进入该包所在的目录,输入jar -cvfm 名称.jar(给你打包后的包取个名字)1.txt(配置文件) ...

java中将一个文件夹下所有的文件压缩成一个文件,然后,解压到指定目录...
import java.util.zip.*;public class CompressD { \/\/ 缓冲 static byte[] buffer = new byte[2048];public static void main(String[] args) throws Exception { \/\/ 来源 File inputDir = new File("C:\\\\CompressTest\\\\");\/\/ 目标 FileOutputStream fos = new FileOutputStream("C:\\\\...

相似回答