真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java如何實現(xiàn)的zip工具類

這篇文章主要介紹了Java如何實現(xiàn)的zip工具類,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)公司是一家以網(wǎng)站建設(shè)公司、網(wǎng)頁設(shè)計、品牌設(shè)計、軟件運維、營銷推廣、小程序App開發(fā)等移動開發(fā)為一體互聯(lián)網(wǎng)公司。已累計為OPP膠袋等眾行業(yè)中小客戶提供優(yōu)質(zhì)的互聯(lián)網(wǎng)建站和軟件開發(fā)服務(wù)。

Java可以用來干什么

Java主要應(yīng)用于:1. web開發(fā);2. Android開發(fā);3. 客戶端開發(fā);4. 網(wǎng)頁開發(fā);5. 企業(yè)級應(yīng)用開發(fā);6. Java大數(shù)據(jù)開發(fā);7.游戲開發(fā)等。

具體如下:

實現(xiàn)把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 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("\\*", "/"); 
   // 判斷路徑是否存在,不存在則創(chuàng)建文件路徑 
   File file = new File(outPath.substring(0, outPath.lastIndexOf('/'))); 
   if (!file.exists()) 
   { 
    file.mkdirs(); 
   } 
   // 判斷文件全路徑是否為文件夾,如果是上面已經(jīng)上傳,不需要解壓 
   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 是否保留文件夾結(jié)構(gòu) 不保留則把文件夾下全部文件都打壓在一起
   * @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 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 是否保留原來的目錄結(jié)構(gòu),true:保留目錄結(jié)構(gòu); 
   *               false:所有文件跑到壓縮包根目錄下(注意:不保留目錄結(jié)構(gòu)可能會出現(xiàn)同名文件,會壓縮失敗)
   * @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實體,構(gòu)造器中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)
      {
        // 需要保留原來的文件結(jié)構(gòu)時,需要對空文件夾進行處理
        if(KeepDirStructure)
        {
          // 空文件夾的處理
          zos.putNextEntry(new ZipEntry(name + "/"));
          // 沒有文件,不需要文件的copy
          zos.closeEntry();
        }
      }else 
      {
        for (File file : listFiles) 
        {
          // 判斷是否需要保留原來的文件結(jié)構(gòu)
          if (KeepDirStructure) 
          {
            // 注意:file.getName()前面需要帶上父文件夾的名字加一斜杠,
            // 不然最后壓縮包中就不能保留原來的文件結(jié)構(gòu),即:所有文件都跑到壓縮包根目錄下了
            compress(file, zos, name + "/" + file.getName(),KeepDirStructure);
          } else 
          {
            compress(file, zos, file.getName(),KeepDirStructure);
          }
        }
      }
    }
  }
}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Java如何實現(xiàn)的zip工具類”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!


新聞名稱:Java如何實現(xiàn)的zip工具類
路徑分享:http://weahome.cn/article/ijjphc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部