Java实现的zip工具类完整实例

作者:夜_清澄 时间:2021-06-22 07:16:17 

本文实例讲述了Java实现的zip工具类。分享给大家供大家参考,具体如下:

实现把zip解压到指定路径,把文件夹压缩到zip,把文件列表压缩为zip的三个方法


import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import java.util.zip.ZipOutputStream;
public class ZipUtils
{
 /**
  * 解压zip到指定路径
  * @param zipFile 待解压文件
  * @param descDir 指定解压路径
  * @return fileNames 解压的全部文件名
  * @throws IOException
  */
 public static List<String> unZipFiles(File zipFile, String descDir) throws IOException
{
   List<String> fileNames = new ArrayList<String>();
 ZipFile zip = new ZipFile(zipFile,Charset.forName("GBK"));//解决中文文件夹乱码
 String name = zip.getName().substring(zip.getName().lastIndexOf('\\')+1, zip.getName().lastIndexOf('.'));
 File pathFile = new File(descDir+name);
 if (!pathFile.exists())
 {
  pathFile.mkdirs();
 }
 String outPath = "";
 for (Enumeration<? extends ZipEntry> entries = zip.entries(); entries.hasMoreElements();)
 {
  ZipEntry entry = (ZipEntry) entries.nextElement();
  String zipEntryName = entry.getName();
  fileNames.add(zipEntryName);
  InputStream in = zip.getInputStream(entry);
  outPath = (descDir + name +"/"+ zipEntryName).replaceAll("\\*", "/");
  // 判断路径是否存在,不存在则创建文件路径
  File file = new File(outPath.substring(0, outPath.lastIndexOf('/')));
  if (!file.exists())
  {
   file.mkdirs();
  }
  // 判断文件全路径是否为文件夹,如果是上面已经上传,不需要解压
  if (new File(outPath).isDirectory())
  {
   continue;
  }
  // 输出文件路径信息
  FileOutputStream out = new FileOutputStream(outPath);
  byte[] buf1 = new byte[1024];
  int len;
  while ((len = in.read(buf1)) > 0) {
   out.write(buf1, 0, len);
  }
  in.close();
  out.close();
 }
 pathFile.delete();
 return fileNames;
}
 /**
  * 压缩文件夹成zip
  * @param srcDir 待打包的文件夹路径
  * @param out 打包文件名及存储路径
  * @param KeepDirStructure 是否保留文件夹结构 不保留则把文件夹下全部文件都打压在一起
  * @throws RuntimeException
  */
 public static void docToZip(String srcDir, OutputStream out, boolean KeepDirStructure)throws RuntimeException
 {
   long start = System.currentTimeMillis();
   ZipOutputStream zos = null ;
   try
   {
     zos = new ZipOutputStream(out);
     File sourceFile = new File(srcDir);
     compress(sourceFile,zos,sourceFile.getName(),KeepDirStructure);
     long end = System.currentTimeMillis();
     System.out.println("压缩完成,耗时:" + (end - start) +" ms");
   } catch (Exception e)
   {
     throw new RuntimeException("zip error from ZipUtils",e);
   }finally
   {
     if(zos != null)
     {
       try
       {
         zos.close();
       } catch (IOException e)
       {
         e.printStackTrace();
       }
     }
   }
 }
 /**
  * 压缩成ZIP 将多个文件大包
  * @param srcFiles 需要压缩的文件列表
  * @param out     压缩文件输出流
  * @throws RuntimeException 压缩失败会抛出运行时异常
  */
 public static void filesToZip(List<File> srcFiles , OutputStream out)throws RuntimeException
 {
   long start = System.currentTimeMillis();
   ZipOutputStream zos = null ;
   int BUFFER_SIZE = 2 * 1024;
   try
   {
     zos = new ZipOutputStream(out);
     for (File srcFile : srcFiles)
     {
       byte[] buf = new byte[BUFFER_SIZE];
       zos.putNextEntry(new ZipEntry(srcFile.getName()));
       int len;
       FileInputStream in = new FileInputStream(srcFile);
       while ((len = in.read(buf)) != -1)
       {
         zos.write(buf, 0, len);
       }
       zos.closeEntry();
       in.close();
     }
     long end = System.currentTimeMillis();
     System.out.println("压缩完成,耗时:" + (end - start) +" ms");
   } catch (Exception e)
   {
     throw new RuntimeException("zip error from ZipUtils",e);
   }finally
   {
     if(zos != null)
     {
       try
       {
         zos.close();
       } catch (IOException e)
       {
         e.printStackTrace();
       }
     }
   }
 }
 /**
  * 递归压缩方法
  * @param sourceFile 源文件
  * @param zos     zip输出流
  * @param name     压缩后的名称
  * @param KeepDirStructure 是否保留原来的目录结构,true:保留目录结构;
  *               false:所有文件跑到压缩包根目录下(注意:不保留目录结构可能会出现同名文件,会压缩失败)
  * @throws Exception
  */
 private static void compress(File sourceFile, ZipOutputStream zos, String name,
     boolean KeepDirStructure) throws Exception
 {
   int BUFFER_SIZE = 2 * 1024;
   byte[] buf = new byte[BUFFER_SIZE];
   if(sourceFile.isFile())
   {
     // 向zip输出流中添加一个zip实体,构造器中name为zip实体的文件的名字
     zos.putNextEntry(new ZipEntry(name));
     // copy文件到zip输出流中
     int len;
     FileInputStream in = new FileInputStream(sourceFile);
     while ((len = in.read(buf)) != -1)
     {
       zos.write(buf, 0, len);
     }
     // Complete the entry
     zos.closeEntry();
     in.close();
   } else
   {
     File[] listFiles = sourceFile.listFiles();
     if(listFiles == null || listFiles.length == 0)
     {
       // 需要保留原来的文件结构时,需要对空文件夹进行处理
       if(KeepDirStructure)
       {
         // 空文件夹的处理
         zos.putNextEntry(new ZipEntry(name + "/"));
         // 没有文件,不需要文件的copy
         zos.closeEntry();
       }
     }else
     {
       for (File file : listFiles)
       {
         // 判断是否需要保留原来的文件结构
         if (KeepDirStructure)
         {
           // 注意:file.getName()前面需要带上父文件夹的名字加一斜杠,
           // 不然最后压缩包中就不能保留原来的文件结构,即:所有文件都跑到压缩包根目录下了
           compress(file, zos, name + "/" + file.getName(),KeepDirStructure);
         } else
         {
           compress(file, zos, file.getName(),KeepDirStructure);
         }
       }
     }
   }
 }
}

希望本文所述对大家java程序设计有所帮助。

来源:https://blog.csdn.net/changquanzhu2969/article/details/80682309

标签:Java,zip工具类
0
投稿

猜你喜欢

  • 如何使用MybatisPlus快速进行增删改查详解

    2023-11-03 06:58:13
  • SpringBoot2零基础到精通之映射与常用注解请求处理

    2022-06-11 15:41:51
  • SpringBoot中JPA实现Sort排序的三种方式小结

    2022-02-12 23:35:12
  • Java下变量大小写驼峰、大小写下划线、大小写连线转换

    2022-04-19 15:20:18
  • C++程序中启动线程的方法

    2023-06-28 03:35:02
  • Java异常处理try catch的基本用法

    2022-11-27 11:36:15
  • IDEA启动tomcat控制台中文乱码问题的解决方法(100%有效)

    2021-06-25 10:45:23
  • 保证缓存和数据库的数据一致性详解

    2023-11-18 08:10:44
  • 详解java 客户端链接不上redis解决方案

    2023-11-12 10:12:15
  • Java 如何实现一个http服务器

    2022-03-27 05:40:04
  • Java并发线程池实例分析讲解

    2022-08-05 20:25:40
  • Spring AOP面向切面编程实现原理方法详解

    2021-07-22 00:26:07
  • 关于通过java调用datax,返回任务执行的方法

    2023-11-28 21:26:45
  • Spring Boot Reactor 整合 Resilience4j详析

    2021-08-08 10:30:02
  • java入门概念个人理解之package与import浅析

    2021-07-09 10:18:55
  • Android 显示GIF图片实例详解

    2023-08-06 09:11:52
  • SpringBoot打包发布到linux上(centos 7)的步骤

    2023-08-11 06:35:55
  • Java安全之Tomcat6 Filter内存马问题

    2022-11-20 07:29:23
  • Java实现统计字符串出现的次数

    2022-12-19 01:06:52
  • Java 转型(向上或向下转型)详解及简单实例

    2021-10-17 14:29:27
  • asp之家 软件编程 m.aspxhome.com