栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

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

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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

本文实例讲述了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
{
  
  public static List unZipFiles(File zipFile, String descDir) throws IOException
 { 
    List fileNames = new ArrayList();
  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 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; 
 }
  
  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();
 }
      }
    }
  }
  
  public static void filesToZip(List 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();
 }
      }
    }
  }
  
  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算法相关内容感兴趣的读者可查看本站专题:《Java文件与目录操作技巧汇总》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》和《Java缓存操作技巧汇总》

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

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/139457.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号