有什么好的Java库来压缩解压缩文件?

有什么好的Java库来压缩解压缩文件?,第1张

有什么好的Java库来压缩/解压缩文件

我知道它的时间很晚,并且有很多答案,但是这个zip4j是我使用过的最好的zip库之一。它简单(没有锅炉代码),并且可以轻松处理受密码保护的文件。

import net.lingala.zip4j.exception.ZipException;import net.lingala.zip4j.core.ZipFile;public static void unzip(){    String source = "some/compressed/file.zip";    String destination = "some/destination/folder";    String password = "password";    try {         ZipFile zipFile = new ZipFile(source);         if (zipFile.isEncrypted()) { zipFile.setPassword(password);         }         zipFile.extractAll(destination);    } catch (ZipException e) {        e.printStackTrace();    }}

Maven依赖项是:

<dependency>    <groupId>net.lingala.zip4j</groupId>    <artifactId>zip4j</artifactId>    <version>1.3.2</version></dependency>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5146663.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存