使用net.lingala.zip4j来进行文件加密压缩。
添加依赖net.lingala.zip4j包依赖,这里使用的是最新的包2.11.5版本。
dependency>
groupId>net.lingala.zip4j/groupId>
artifactId>zip4j/artifactId>
version>${zip4j.version}/version>
/dependency>
使用ZipFile加密压缩文件
public static void main(String[] args) throws Exception{
ZipParameters zipParameters = new ZipParameters();
zipParameters.setEncryptFiles(true);
zipParameters.setEncryptionMethod(EncryptionMethod.AES);
// Below line is optional. AES 256 is used by default.
// You can override it to use AES 128. AES 192 is supported only for extracting.
zipParameters.setAesKeyStrength(AesKeyStrength.KEY_STRENGTH_256);
ListFile> filesToAdd = Arrays.asList(
new File("F:test1.txt"),
new File("F:test2.txt")
);
ZipFile zipFile = new ZipFile("F:test.zip", "test".toCharArray());
zipFile.addFiles(filesToAdd, zipParameters);
}
执行程序,压缩后:
网上能找到的基本的的参考例子都是这个,但是我们真正使用的时候是不会从本地读取文件的方式的,是使用流的方式服务器托管网,入参,出参都应该是个流。官方文档也提供了使用流的方式压缩文件的。
使用ZipOutputStream加密压缩文件
public static void main(String[] args) throws Exception {
String password = "test";
ListFile> filesToAdd = Arrays.asList(
new File("F:test1.txt"),
new File("F:test2.txt")
);
byte[] buff = new byte[4096];
int readLen;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
try(ZipOutputStream zipOutputStream = new ZipOutputStream(bos, password.toCharArray(), Charset.defaultCharset())) {
for (File fileToAdd : filesToAdd) {
ZipParameters parameters = new ZipParameters();
parameters.setEncryptionMethod(EncryptionMethod.AES);
parameters.setEncryptFiles(true);
parameters.setAesKeyStrength(AesKeyStrength.KEY_STRENGTH_256);
parameters.setFileNameInZip(fileToAdd.getName(服务器托管网));
zipOutputStream.putNextEntry(parameters);
try(InputStream inputStream = new FileInputStream(fileToAdd)) {
// zipOutputStream.write(inputStream.readAllBytes());
while ((readLen = inputStream.read(buff)) != -1) {
zipOutputStream.write(buff, 0, readLen);
}
}
zipOutputStream.closeEntry();
}
}
try (FileOutputStream fileOutputStream = new FileOutputStream("F:test.zip")){
fileOutputStream.write(bos.toByteArray());
}
}
这里说一下像ByteArrayOutputStream这种内存流是不用关闭的,这种的不使用的时候会自动回收了,只有FileOutputStream这种操作了磁盘,或者网络,IO的需要手动关闭,这里放到try块去,自动调用close方法。
官方文档:https://github.com/srikanth-lingala/zip4j
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
相关推荐: 聊一聊如何整合Microsoft.Extensions.DependencyInjection和Castle.Core(二)
聊一聊如何整合Microsoft.Extensions.DependencyInjection和Castle.Core(二) 前言 前文排版比较糟糕,这次我们使用vscode来写本文,,各位看客请见谅。 上文描述了 ServiceDescriptor 的三种构…