91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

里有Java如何實現壓縮與解壓zip文件

發布時間:2020-11-19 16:36:48 來源:億速云 閱讀:218 作者:Leah 欄目:編程語言

里有Java如何實現壓縮與解壓zip文件?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

Java解壓縮zip - 多個文件(包括文件夾),對多個文件和文件夾進行壓縮,對復雜的文件目錄進行解壓。壓縮方法使用的是可變參數,可以壓縮1到多個文件..可以寫數組的方式或者一個個寫到參數列表里面...

 ZipFiles(zip,"abc",new File("d:/English"),new File("d:/發放數據.xls")); 

測試文件目錄結構: 

里有Java如何實現壓縮與解壓zip文件

測試的壓縮內容:English文件夾和同級的兩個excel文件

 File[] files = new File[]{new File("d:/English"),new File("d:/發放數據.xls"),new File("d:/中文名稱.xls")}; 

下面是壓縮的代碼:

 /** 
  * 壓縮文件-由于out要在遞歸調用外,所以封裝一個方法用來 
  * 調用ZipFiles(ZipOutputStream out,String path,File... srcFiles) 
  * @param zip 
  * @param path 
  * @param srcFiles 
  * @throws IOException 
  * 
  */ 
  public static void ZipFiles(File zip,String path,File... srcFiles) throws IOException{ 
   ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zip)); 
   ZipTest.ZipFiles(out,path,srcFiles); 
   out.close(); 
   System.out.println("*****************壓縮完畢*******************"); 
  } 
  /** 
  * 壓縮文件-File 
  * @param zipFile zip文件 
  * @param srcFiles 被壓縮源文件 
  * 
  */ 
  public static void ZipFiles(ZipOutputStream out,String path,File... srcFiles){ 
   path = path.replaceAll("\\*", "/"); 
   if(!path.endsWith("/")){ 
    path+="/"; 
   } 
   byte[] buf = new byte[1024]; 
   try { 
    for(int i=0;i<srcFiles.length;i++){ 
     if(srcFiles[i].isDirectory()){ 
      File[] files = srcFiles[i].listFiles(); 
      String srcPath = srcFiles[i].getName(); 
      srcPath = srcPath.replaceAll("\\*", "/"); 
      if(!srcPath.endsWith("/")){ 
       srcPath+="/"; 
      } 
      out.putNextEntry(new ZipEntry(path+srcPath)); 
     ZipFiles(out,path+srcPath,files); 
     } 
     else{ 
      FileInputStream in = new FileInputStream(srcFiles[i]); 
      System.out.println(path + srcFiles[i].getName()); 
      out.putNextEntry(new ZipEntry(path + srcFiles[i].getName())); 
      int len; 
      while((len=in.read(buf))>0){ 
       out.write(buf,0,len); 
      } 
      out.closeEntry(); 
      in.close(); 
     } 
   } 
   } catch (Exception e) { 
    e.printStackTrace(); 
   } 
 } 

在壓縮的時候,針對文件夾進行判斷,然后遞歸壓縮文件。

然后是解壓:

/** 
  * 解壓到指定目錄 
  * @param zipPath 
  * @param descDir 
  * 
  */ 
  public static void unZipFiles(String zipPath,String descDir)throws IOException{ 
   unZipFiles(new File(zipPath), descDir); 
  } 
  /** 
  * 解壓文件到指定目錄 
  * @param zipFile 
  * @param descDir 
  * 
  */ 
  @SuppressWarnings("rawtypes") 
  public static void unZipFiles(File zipFile,String descDir)throws IOException{ 
   File pathFile = new File(descDir); 
   if(!pathFile.exists()){ 
    pathFile.mkdirs(); 
   } 
  ZipFile zip = new ZipFile(zipFile); 
   for(Enumeration entries = zip.getEntries();entries.hasMoreElements();){ 
    ZipEntry entry = (ZipEntry)entries.nextElement(); 
    String zipEntryName = entry.getName(); 
    InputStream in = zip.getInputStream(entry); 
    String outPath = (descDir+zipEntryName).replaceAll("\\*", "/");; 
    //判斷路徑是否存在,不存在則創建文件路徑 
    File file = new File(outPath.substring(0, outPath.lastIndexOf('/'))); 
    if(!file.exists()){ 
     file.mkdirs(); 
    } 
    //判斷文件全路徑是否為文件夾,如果是上面已經上傳,不需要解壓 
    if(new File(outPath).isDirectory()){ 
     continue; 
    } 
    //輸出文件路徑信息 
    System.out.println(outPath); 
    
    OutputStream 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(); 
    } 
   System.out.println("******************解壓完畢********************"); 
  } 

解壓的時候,針對文件夾判斷創建不存在的文件夾,對文件夾只創建,不進行解壓..因為解壓是針對文件的,不是文件夾,文件夾需要自己創建。

測試方法:

 public static void main(String[] args) throws IOException { 
   /** 
   * 壓縮文件 
   */ 
   File[] files = new File[]{new File("d:/English"),new File("d:/發放數據.xls"),new File("d:/中文名稱.xls")}; 
   File zip = new File("d:/壓縮.zip"); 
   ZipFiles(zip,"abc",files); 
   
   /** 
   * 解壓文件 
   */ 
   File zipFile = new File("d:/壓縮.zip"); 
   String path = "d:/zipfile/"; 
   unZipFiles(zipFile, path); 
  } 

測試方法并沒有對異常做任何處理,這是不對的,請不要模仿。

輸出結果:

 abc/English/templete.xls 
 abc/English/中文/bjpowernode/isea/533/abc/templete.xls 
 abc/English/中文/bjpowernode/isea/533/abc/zipfile2/templete.xls 
 abc/English/中文/bjpowernode/isea/533/abc/zipfile2/zipfile/abc/templete.xls 
 abc/English/中文/bjpowernode/isea/533/abc/zipfile2/zipfile/abc/zipfile2/templete.xls 
 abc/English/中文/bjpowernode/isea/533/abc/zipfile2/zipfile/abc/zipfile2/領卡清單.xls 
 abc/English/中文/bjpowernode/isea/533/abc/zipfile2/領卡清單.xls 
 abc/English/中文/bjpowernode/isea/templete.xls 
 abc/English/中文/bjpowernode/isea/領卡清單.xls 
 abc/English/中文/bjpowernode/templete.xls 
 abc/English/領卡清單.xls 
 abc/發放數據.xls 
 abc/中文名稱.xls 
 *****************壓縮完畢******************* 
 d:/zipfile/abc/中文名稱.xls 
 d:/zipfile/abc/發放數據.xls 
 d:/zipfile/abc/English/領卡清單.xls 
 d:/zipfile/abc/English/中文/bjpowernode/templete.xls 
 d:/zipfile/abc/English/中文/bjpowernode/isea/領卡清單.xls 
 d:/zipfile/abc/English/中文/bjpowernode/isea/templete.xls 
 d:/zipfile/abc/English/中文/bjpowernode/isea/533/abc/templete.xls 
 d:/zipfile/abc/English/templete.xls 
 d:/zipfile/abc/English/中文/bjpowernode/isea/533/abc/zipfile2/templete.xls 
 d:/zipfile/abc/English/中文/bjpowernode/isea/533/abc/zipfile2/zipfile/abc/templete.xls 
 d:/zipfile/abc/English/中文/bjpowernode/isea/533/abc/zipfile2/zipfile/abc/zipfile2/templete.xls 
 d:/zipfile/abc/English/中文/bjpowernode/isea/533/abc/zipfile2/zipfile/abc/zipfile2/領卡清單.xls 
 d:/zipfile/abc/English/中文/bjpowernode/isea/533/abc/zipfile2/領卡清單.xls 
 ******************解壓完畢******************** 

里有Java如何實現壓縮與解壓zip文件

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江陵县| 宝鸡市| 璧山县| 盈江县| 井研县| 仪征市| 阿拉善右旗| 北安市| 中山市| 西安市| 文安县| 云安县| 洛南县| 武强县| 沭阳县| 定南县| 三台县| 乐亭县| 开原市| 池州市| 洛宁县| 常熟市| 巍山| 西安市| 永平县| 阳春市| 内江市| 衡东县| 青浦区| 三江| 门源| 黔西县| 垦利县| 大连市| 双桥区| 沧源| 霞浦县| 陕西省| 桐乡市| 台山市| 刚察县|