Java 使用 zip4j 进行基本的压缩、解压、设置密码操作(version zip4j-2.6.4)

先看工具类

package space.util;import java.io.File;
import java.util.List;import net.lingala.zip4j.ZipFile;
import net.lingala.zip4j.model.ZipParameters;
import net.lingala.zip4j.model.enums.AesKeyStrength;
import net.lingala.zip4j.model.enums.EncryptionMethod;/*** 文件打包工具类* * @author SPACE* @log Jun 14, 2020 9:23:19 PM*/
public class ZipUtil {/*** 打包指定的文件* * @param file        待打包的文件* @param zipFilePath 存储压缩包的路径,包含文件名* @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午2:46:49*/public static void packageZip(File file, String zipFilePath) throws Exception {validationIsNull(file, zipFilePath);new ZipFile(zipFilePath).addFile(file);}/*** 打包指定的文件* * @param file        待打包的文件* @param zipFilePath 存储压缩包的路径,包含文件名* @param password    压缩包密码* @throws Exception* * @author by SPACE* @log create on 2020-6-15 15:09:27*/public static void packageZip(File file, String zipFilePath, String password) throws Exception {validationIsNull(file, zipFilePath, password);ZipFile zipFile = new ZipFile(zipFilePath, password.toCharArray());zipFile.addFile(file, getZipParameters());}/*** 对指定的一些文件进行打包* * @param fileList    待打包的文件 list(不接收目录)* @param zipFilePath 存储压缩包的路径,包含文件名* @throws Exception* * @author by SPACE* @log create on 2020年6月15日15:09:37*/public static void packageZip(List<File> fileList, String zipFilePath) throws Exception {validationIsNull(fileList, zipFilePath);new ZipFile(zipFilePath).addFiles(fileList);}/*** 对指定的一些文件进行打包* * @param fileList    待打包的文件 list* @param zipFilePath 存储压缩包的路径,包含文件名* @param password    压缩包密码* * @author by SPACE* @throws Exception* @log create on 2020年6月15日下午2:41:23*/public static void packageZip(List<File> fileList, String zipFilePath, String password) throws Exception {validationIsNull(fileList, zipFilePath, password);ZipFile zipFile = new ZipFile(zipFilePath, password.toCharArray());zipFile.addFiles(fileList, getZipParameters());}/*** 打包指定的目录* * @param catalogPath 待打包的目录* @param zipFilePath 存储压缩包的路径,包含文件名* @throws Exception 如 catalogPath 非目录,则抛出此异常* * @author by SPACE* @log create on 2020年6月15日下午2:30:10*/public static void packageZip(String catalogPath, String zipFilePath) throws Exception {validationIsNull(catalogPath, zipFilePath);new ZipFile(zipFilePath).addFolder(new File(catalogPath));}/*** 打包指定的目录* * @param catalogPath 待打包的目录* @param zipFilePath 存储压缩包的路径,包含文件名* @param password    压缩包密码* @throws Exception 如 catalogPath 非目录,则抛出此异常* * @author by SPACE* @log create on 2020年6月15日下午2:33:33*/public static void packageZip(String catalogPath, String zipFilePath, String password) throws Exception {validationIsNull(catalogPath, zipFilePath, password);ZipFile zipFile = new ZipFile(zipFilePath, password.toCharArray());zipFile.addFolder(new File(catalogPath), getZipParameters());}/*** 解压压缩包* * @param zipFilePath  待解压的压缩包绝对路径* @param unzipCatalog 解压后的目录* @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午3:51:07*/public static void unzipAll(String zipFilePath, String unzipCatalog) throws Exception {validationIsNull(zipFilePath, unzipCatalog);new ZipFile(zipFilePath).extractAll(unzipCatalog);}/*** 解压带密码的压缩包* * @param zipFilePath  待解压的压缩包绝对路径* @param unzipCatalog 解压后的目录* @param password     压缩包密码* @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午3:51:45*/public static void unzipAll(String zipFilePath, String unzipCatalog, String password) throws Exception {validationIsNull(zipFilePath, unzipCatalog);new ZipFile(zipFilePath, password.toCharArray()).extractAll(unzipCatalog);}/*** 解压指定的文件* * @param zipFilePath    待解压的压缩包绝对路径* @param targetFilePath 目标文件相对目录,基于压缩包根目录* @param unzipCatalog   解压后的目录* @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午3:56:15*/public static void unzipTargetFile(String zipFilePath, String targetFilePath, String unzipCatalog)throws Exception {new ZipFile(zipFilePath).extractFile(targetFilePath, unzipCatalog);}/*** 从设置了密码的压缩包中解压指定的文件* * @param zipFilePath    待解压的压缩包绝对路径* @param targetFilePath 目标文件相对目录,基于压缩包根目录,* 							<span style="color:red">例如 msg/success/msg.txt</span>* @param unzipCatalog   解压后的目录* @param password       压缩包密码* @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午3:54:36*/public static void unzipTargetFile(String zipFilePath, String targetFilePath, String unzipCatalog, String password)throws Exception {new ZipFile(zipFilePath, password.toCharArray()).extractFile(targetFilePath, unzipCatalog);}/*** 校验参数是否为空* * @param objects 待校验的参数数组* @throws NullPointerException* * @author by SPACE* @log create on 2020年6月15日下午3:06:20*/static void validationIsNull(Object... objects) throws NullPointerException {for (int i = 0; i < objects.length; i++) {if (StringUtil.isNull(objects[i])) {throw new NullPointerException("param is null");}}}/*** get ZipParameters* * @return ZipParameters* * @author by SPACE* @log create on 2020年6月15日下午3:05:24*/static ZipParameters getZipParameters() {ZipParameters zipParameters = new ZipParameters();zipParameters.setEncryptFiles(true);zipParameters.setEncryptionMethod(EncryptionMethod.AES);zipParameters.setAesKeyStrength(AesKeyStrength.KEY_STRENGTH_256);return zipParameters;}}

再看测试类

package space.main;import java.io.File;
import java.util.ArrayList;
import java.util.List;import net.lingala.zip4j.exception.ZipException;
import space.util.ZipUtil;public class ZipTest {/*** 压缩包密码*/static final String ZIP_PASSWORD = "TAehvImD9zRZnaikoibnup7x6G4kt3fQ";public static void main(String[] args) {try {// 打包单个文件// packageFileZip();// 打包单个文件,并设置密码
//			packageFilePwdZip();// 打包多个文件
//			packageFilesZip();// 打包多个文件,设置密码
//			packageFilesPwdZip();// 打包指定的目录
//			packageFileCatalogZip();// 打包指定的目录,设置密码
//			packageFileCatalogPwdZip();// 解压压缩包
//			unzipAll();// 解压设置了密码的压缩包
//			unzipPwdAll();// 解压指定的文件
//			unzipTargetFile();// 从设置了密码的压缩包内解压指定的文件
//			unzipTargetPwdFile();System.out.println("OK");} catch (Exception e) {e.printStackTrace();}}/*** 打包单个文件* * @author by SPACE* @throws ZipException* @log create on 2020年6月15日下午2:50:38*/public static void packageFileZip() throws Exception {String filePath = "C:\\Users\\SPACE\\Downloads\\135700\\files\\detailedList.txt";String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";ZipUtil.packageZip(new File(filePath), zipFilePath);}/*** 打包单个文件,带密码* * @author by SPACE* @throws ZipException* @log create on 2020年6月15日下午2:50:38*/public static void packageFilePwdZip() throws Exception {String filePath = "C:\\Users\\SPACE\\Downloads\\135700\\files\\detailedList.txt";String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";ZipUtil.packageZip(new File(filePath), zipFilePath, ZIP_PASSWORD);}/*** 打包多个文件* * @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午3:17:34*/public static void packageFilesZip() throws Exception {List<File> fileList = new ArrayList<File>();fileList.add(new File("C:\\Users\\SPACE\\Downloads\\135700\\files\\detailedList.txt"));fileList.add(new File("C:\\Users\\SPACE\\Downloads\\135700\\files"));fileList.add(new File("C:\\Users\\SPACE\\Downloads\\135700\\files\\subassembly\\10021\\1000310021_run.jsp"));String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";ZipUtil.packageZip(fileList, zipFilePath);}/*** 打包多个文件,设置密码* * @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午3:20:04*/public static void packageFilesPwdZip() throws Exception {List<File> fileList = new ArrayList<File>();fileList.add(new File("C:\\Users\\SPACE\\Downloads\\135700\\files\\detailedList.txt"));fileList.add(new File("C:\\Users\\SPACE\\Downloads\\135700\\files"));fileList.add(new File("C:\\Users\\SPACE\\Downloads\\135700\\files\\subassembly\\10021\\1000310021_run.jsp"));String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";ZipUtil.packageZip(fileList, zipFilePath, ZIP_PASSWORD);}/*** 打包指定的目录* * @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午3:22:25*/public static void packageFileCatalogZip() throws Exception {String catalogPath = "C:\\Users\\SPACE\\Downloads\\135700";String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";ZipUtil.packageZip(catalogPath, zipFilePath);}/*** 打包指定的目录,设置密码* * @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午3:26:34*/public static void packageFileCatalogPwdZip() throws Exception {String catalogPath = "C:\\Users\\SPACE\\Downloads\\135700";String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";ZipUtil.packageZip(catalogPath, zipFilePath, ZIP_PASSWORD);}/*** 解压* * @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午4:00:10*/public static void unzipAll() throws Exception {String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";String unzipCatalog = "C:\\Users\\SPACE\\Downloads\\";ZipUtil.unzipAll(zipFilePath, unzipCatalog);}/*** 解压设置了密码的压缩包* * @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午4:04:57*/public static void unzipPwdAll() throws Exception {String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";String unzipCatalog = "C:\\Users\\SPACE\\Downloads\\";ZipUtil.unzipAll(zipFilePath, unzipCatalog, ZIP_PASSWORD);}/*** 解压指定的文件* * @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午4:07:48*/public static void unzipTargetFile() throws Exception {String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";String unzipCatalog = "C:\\Users\\SPACE\\Downloads\\";String targetFilePath = "135700\\files\\detailedList.txt";ZipUtil.unzipTargetFile(zipFilePath, targetFilePath, unzipCatalog);}/*** 从设置了密码的压缩包内解压指定的文件* * @throws Exception* * @author by SPACE* @log create on 2020年6月15日下午4:08:19*/public static void unzipTargetPwdFile() throws Exception {String zipFilePath = "C:\\Users\\SPACE\\Downloads\\packageZipFile.zip";String unzipCatalog = "C:\\Users\\SPACE\\Downloads\\";String targetFilePath = "135700\\files\\detailedList.txt";ZipUtil.unzipTargetFile(zipFilePath, targetFilePath, unzipCatalog, ZIP_PASSWORD);}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/519127.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux显示mem进行排序,Linux查看系统负载(CPU和MEM考虑)

查看占用CPU最高的10个进程[tidb:vg_adn_tidbCkhsTest:172.31.30.62 ~/tidb-ansible]$ps aux | grep -v PID | sort -rn -k | headmysql 6.6 60.4 ? Sl Nov22 : /usr/local/mysql/bin/mysqld --basedir/usr/local/mysql/ --datadir/data/data_mysql --plugin-dir/usr/local/my…

阿里开发者招聘节 | 面试题02-04:给定一个二叉搜索树(BST),找到树中第K小的节点

为帮助开发者们提升面试技能、有机会入职阿里&#xff0c;云栖社区特别制作了这个专辑——阿里巴巴资深技术专家们结合多年的工作、面试经验总结提炼而成的面试真题这一次将陆续放出&#xff08;面试题官方参考答案将在专辑结束后统一汇总分享&#xff0c;点此进入答题并围观他…

linux 当前用户执行定时任务

当前用户编辑定时任务 crontab -e#每天11点25分执行 25 11 * * * /bin/sh /app/jiazai/sql_loadv1.0/dbloadupgrade.sh #每天凌晨4点执行 0 4 * * * /bin/sh /app/jiazai/sql_loadv1.0/dbloadupgrade.sh #每天11点22分执行 22 11 * * * /bin/sh /home/oracle/1.sh当前用户查看定…

确认!别再相信Python了! 程序员:就你敢说...

程序员你有没有感觉到&#xff0c;Python最近已经刷屏到爆炸了&#xff1f;细分析Python之所以刷屏&#xff0c;主要是因为人红是非多&#xff0c;在编程界它是一种特殊的存在&#xff0c;有人认为&#xff0c;只有用Python才能优雅写代码&#xff0c;提高代码效率&#xff1b;…

云原生的新思考,为什么容器已经无处不在了

4月24日&#xff0c;中国信息通信研究院主办的首届云原生产业大会在北京举行&#xff0c;在《云原生数字引领未来》的主题演讲中&#xff0c;阿里云容器服务总监易立表示&#xff1a;“云原生不但可以很好的支持互联网应用&#xff0c;也在深刻影响着新的计算架构、新的智能数据…

走近科学,探究阿里闲鱼团队通过数据提升Flutter体验的真相

背景 闲鱼客户端的flutter页面已经服务上亿级用户&#xff0c;这个时候Flutter页面的用户体验尤其重要&#xff0c;完善Flutter性能稳定性监控体系&#xff0c;可以及早发现线上性能问题&#xff0c;也可以作为用户体验提升的衡量标准。那么Flutter的性能到底如何&#xff1f;…

阿里3篇技术论文入选国际顶级会议FAST2020,全球第一!

2月26日&#xff0c;存储行业顶级国际会议FAST2020&#xff08;18th USENIX Conference on File and Storage Technologies&#xff09;在美国圣克拉拉举行&#xff0c;大会公开论文名单显示&#xff0c;阿里巴巴3篇第一作者论文入选&#xff0c;是全球入选数最多的企业。 FAS…

oracle11g linux 日期格式设置

下面的过程把oracle 的日期格式设置成 yyyy-mm-dd hh24:mi:ss(1) 使用 oracle 用户登录(2) 在.bash_profile里增加以下两条环境变量export NLS_LANGamerican_america.ZHS16GBK export NLS_DATE_FORMAT"YYYY-MM-DD HH24:MI:SS" (3) 执行一下"source .bash_profil…

如何通过http从linux下载文件,linux – 我可以通过http验证大量文件下载吗?

在服务器端,您可以使用dd和md5sum来校验文件的每个块&#xff1a;#!/bin/bashFILENAME"$1"FILESIZEstat --printf"%s" $FILENAMECHUNKSIZE536870912 # 512MBCHUNKNUM0while ! grep -q cannot skip hash.log 2> /dev/null ; dodd if$FILENAME bs$CHUNKSI…

一份还热乎的蚂蚁金服面经(已拿Offer)!附答案!!

本文来自我的知识星球的球友投稿&#xff0c;他在最近的校招中拿到了蚂蚁金服的实习生Offer&#xff0c;整体思路和面试题目由作者——泽林提供&#xff0c;部分答案由Hollis整理自知识星球《Hollis和他的朋友们》中「直面Java」板块。 经历了漫长一个月的等待&#xff0c;终于…

SFTP多用户权限 linux环境 一站式解决方案

文章目录一、方案11. 创建用户组2. 添加用户并设置为sftp组3. 设置用户密码4. 创建用户目录。并设置权限5. 修改SSH配置6. 在/etc/ssh/sshd_config添加用户组配置7. 最后重启SSH二、方案2(推荐)2.1. 创建用户组2.2. 添加用户并设置为sftp组2.3. 设置用户密码2.4. 创建用户目录。…

linux RssFile什么含义,什么是RSS

导读RSS 指 Really Simple Syndication(真正简易联合),RSS 的 元素可描述 RSS feed。RSS 元素RSS 的 元素可描述 RSS feed。请看下面这个 RSS 文档&#xff1a;<?xml version"1.0"encoding"UTF-8"?>菜鸟教程首页http://www.runoob.com免费编程教程…

linux CPU、内存、I/O、磁盘等监控统一解决方案

文章目录一、效果图二、软件安装配置2.1. nmon安装2.2. 权限赋予2.3. 脚本制作2.4. 脚本运行三、解析监控文件3.1. 监控文件下载3.2. 解析监控文件3.3. 监控指标总览补充内存计算方式需求背景: 性能测试过程中监控服务器健康(CPU、内存、I/O、磁盘)指标的状态 一、效果图 二、软…

数据科学家常见的5个SQL面试问题

作者 | Alexei Ledenev翻译 | 天道酬勤&#xff0c;责编 | Carol出品 | CSDN云计算&#xff08;ID&#xff1a;CSDNcloud&#xff09;在任何以数据为中心的工作中&#xff0c;对SQL有深刻的理解都是成功的关键&#xff0c;尽管这不是工作中最有趣的部分。事实上&#xff0c;除了…

java复制文件夹中的所有文件和文件夹到另一个文件夹中

package com.gblfy.ly.controller;import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException;public class FileUtils {/*** 复制整个文件夹内容* param oldPath String 原文件路径 如&#xff1a;c:/fqf* param ne…

c语言程序滞留,c语言有个可以使程序延时的语句是什么?

满意答案hsgfzdg99推荐于 2017.09.11采纳率&#xff1a;57% 等级&#xff1a;9已帮助&#xff1a;1169人Sleep函数:功 能: 执行挂起一段时间  用 法: unsigned sleep(unsigned seconds);  注意:  在VC中使用带上头文件#include  在VC中,Sleep中的第一个英文字符为大写的…

从濒临解散到浴火重生,OceanBase 这十年经历了什么?

阿里妹导读&#xff1a;谈及国产自研数据库&#xff0c;就不得不提 OceanBase。与很多人想象不同的是&#xff0c;OceanBase 并非衔着金钥匙出生的宠儿。相反&#xff0c;它曾无人看好、困难重重&#xff0c;整个团队甚至数度濒临解散。 从危在旦夕到浴火重生&#xff0c;Ocean…

两成开发者月薪超 1.7 万、算法工程师最紧缺! | 中国开发者年度报告

整理 | 郭芮 责编 | 唐小引 出品 | CSDN&#xff08;ID&#xff1a;CSDNnews&#xff09; “求知若饥&#xff0c;虚心若愚”——这个原本出自《全球概览》的俳句&#xff0c;因为乔布斯在斯坦福大学毕业演讲中的引用而备受推崇&#xff0c;流传成为 IT 界的至理名言之一。在…

拒绝版权流氓!阿里巴巴重磅发布免费商用字体

UCAN 2019 设计大会在杭州国际博览中心开幕&#xff0c;超过 4000 位来自世界各地的设计师参与了这场阿里巴巴设计举办的盛会。 继去年品牌升级为阿里巴巴设计&#xff08;Alibaba Design&#xff09;后&#xff0c;阿里巴巴经济体设计委员会委员长杨光&#xff08;青云&#…

全站CSRF漏洞

文章目录二、解决方案2.1. 创建CSRF防御统一管理2.2. 创建csrfToken校验2.3. 加密工具类2.4. 查询实战2.5. 添加和更新实战默认guns不支持添加headers的需要添加ax2二、解决方案 2.1. 创建CSRF防御统一管理 package com.gblfy.sys.config.web.csrf;import com.gblfy.base.uti…