springboot 中 java.util.zip 文件的压缩
package com.geotmt.billingcenter.common.utils; import org.datanucleus.util.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.*; import java.util.zip.CRC32; import java.util.zip.CheckedOutputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; /** * @Description 压缩与解压工具 * @Author yanghanwei * @Date 18:42 2019-11-20 * @Version v1 **/ public class ZipUtils { private static final Logger logger = LoggerFactory.getLogger(ZipUtils.class); /** * 压缩 zip * @param filePath 文件夹 全路径 * @param fileName 文件夹名称 * @param outPath 压缩文件保存路径 */ public static void zipFile(String filePath, String fileName, String outPath) { logger.info("filePath:{}, fileName:{}, outPath:{}", filePath, fileName, outPath); try { //创建Test.zip文件 OutputStream is = new FileOutputStream(outPath); //检查输出流,采用CRC32算法,保证文件的一致性 CheckedOutputStream cos = new CheckedOutputStream(is, new CRC32()); //创建zip文件的输出流 ZipOutputStream zos = new ZipOutputStream(cos); //需要压缩的文件或文件夹对象 File file = new File(filePath); //压缩文件的具体实现函数 zipFilePost(zos,file,filePath,fileName,outPath); zos.close(); cos.close(); is.close(); System.out.println("压缩完成"); } catch (Exception e) { logger.error("压缩失败zipFile,Exception:" + e); } } /** * 压缩文件 * @param zos zip文件的输出流 * @param file 需要压缩的文件或文件夹对象 * @param filePath 压缩的文件路径 * @param fileName 需要压缩的文件夹名 * @param outPath 缩完成后保存为Test.zip文件 */ private static void zipFilePost(ZipOutputStream zos, File file, String filePath, String fileName, String outPath){ try{ String path = file.getPath(); String zosName = ""; if(!StringUtils.isEmpty(path)){ zosName = path.substring(path.indexOf(fileName)); } File[] files = file.listFiles(); if(file.isDirectory() && files != null && files.length > 0) { // 创建压缩文件的目录结构 zos.putNextEntry(new ZipEntry(zosName + File.separator)); for(File f : files) { zipFilePost(zos, f, filePath, fileName, outPath); } } else { logger.info("正在压缩文件:{}",file.getName()); // 创建压缩文件 zos.putNextEntry(new ZipEntry(zosName)); // 用字节方式读取源文件 InputStream is = new FileInputStream(file.getPath()); // 创建一个缓存区 BufferedInputStream bis = new BufferedInputStream(is); // 字节数组,每次读取1024个字节 byte [] b = new byte[1024]; // 循环读取,边读边写 while(bis.read(b)!=-1) { // 写入压缩文件 zos.write(b); } //关闭流 bis.close(); is.close(); } } catch (Exception e) { logger.error("压缩文件失败zipFilePost,Exception:" + e); } } public static void main(String[] args) throws Exception{ String filePath = "/var/folders/88/jh37h0fj59l1f302jdryz4780000gn/T/201908月小微平台消耗-1574300435525/"; // 需要压缩的文件夹名 String fileName = "201908月小微平台消耗-1574300435525"; // 压缩完成后保存为Test.zip文件,名字随意 String outPath = "/var/folders/88/jh37h0fj59l1f302jdryz4780000gn/T/Test3.zip"; zipFile(filePath, fileName, outPath); } }
转自:https://blog.csdn.net/qq_29323645/article/details/103202158
分类:
java
, springboot
标签:
压缩文件
, springboots
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!