歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

JAVA實現實用的ZIP壓縮與解壓

程序實現了ZIP壓縮。共分為2部分 : 壓縮(compression)與解壓(decompression)

大致功能包括用了多態,遞歸等JAVA核心技術,可以對單個文件和任意級聯文件夾進行壓縮和解壓。 需在代碼中自定義源輸入路徑和目標輸出路徑。 

  1. package com.han;  
  2. import java.io.*;  
  3. import java.util.zip.*;  
  4.   
  5. /** 
  6.  * 程序實現了ZIP壓縮。共分為2部分 : 
  7.  * 壓縮(compression)與解壓(decompression) 
  8.  * <p> 
  9.  * 大致功能包括用了多態,遞歸等JAVA核心技術,可以對單個文件和任意級聯文件夾進行壓縮和解壓。 
  10.  * 需在代碼中自定義源輸入路徑和目標輸出路徑。 
  11.  * <p> 
  12.  * 在本段代碼中,實現的是壓縮部分;解壓部分見本包中decompression部分。 
  13.  * @author HAN 
  14.  * 
  15.  */  
  16. public class CopyOfMyZipCompressing {  
  17.     private int k=1;   //定義遞歸次數變量   
  18.     public CopyOfMyZipCompressing() {  
  19.         // TODO Auto-generated constructor stub   
  20.     }  
  21.   
  22.     public static void main(String[] args) {  
  23.         // TODO Auto-generated method stub   
  24.         long startTime=System.currentTimeMillis();  
  25.         CopyOfMyZipCompressing book=new CopyOfMyZipCompressing();  
  26.         try {  
  27.             book.zip("C:\\Users\\HAN\\Desktop\\stock\\SpectreCompressed.zip"//自定義的zip輸出路徑   
  28.                     new File("C:\\Users\\HAN\\Desktop\\CombinedSpectres.txt")); //自定義的源輸入路徑,即要壓縮的文件或文件夾   
  29.         } catch (Exception e) {  
  30.             // TODO Auto-generated catch block   
  31.             e.printStackTrace();  
  32.         }  
  33.         long endTime=System.currentTimeMillis();  
  34.         System.out.println("耗費時間: "+(endTime-startTime)+" ms");  
  35.     }  
  36.   
  37.     private void zip(String zipFileName, File inputFile) throws Exception{  
  38.         System.out.println("壓縮中...");  
  39.         ZipOutputStream out=new ZipOutputStream(new FileOutputStream(zipFileName));  
  40.         BufferedOutputStream bo=new BufferedOutputStream(out);  
  41.         zip(out,inputFile, "/"+inputFile.getName(),bo);  
  42.         bo.close();  
  43.         out.close();  //輸出流關閉   
  44.         System.out.println("壓縮完成");  
  45.     }  
  46.     private void zip(ZipOutputStream out, File f, String base, BufferedOutputStream bo)  
  47.     throws Exception{ //方法重載   
  48.         if (f.isDirectory()){  
  49.             File[] fl=f.listFiles();  
  50.             for(int i=0;i<fl.length;i++){  
  51.                 zip(out, fl[i],base+"/"+fl[i].getName(),bo);    //遞歸遍歷子文件夾   
  52.             }  
  53.             System.out.println("第"+k+"次遞歸");  
  54.             k++;  
  55.         }else{  
  56.             out.putNextEntry(new ZipEntry(base)); // 創建zip壓縮進入點base   
  57.             System.out.println(base);  
  58.             FileInputStream in=new FileInputStream(f);  
  59.             BufferedInputStream bi=new BufferedInputStream(in);  
  60.             int b;  
  61.             while((b=bi.read())!=-1){  
  62.                 bo.write(b); //將字節流寫入當前zip目錄   
  63.             }  
  64.             bi.close();  
  65.             in.close(); //輸入流關閉   
  66.         }  
  67.     }  
  68. }  

 
  1. package com.han;  
  2.   
  3. import java.io.*;  
  4. import java.util.zip.*;  
  5. /** 
  6.  * 程序實現了ZIP壓縮。共分為2部分 : 
  7.  * 壓縮(compression)與解壓(decompression) 
  8.  * <p> 
  9.  * 大致功能包括用了多態,遞歸等JAVA核心技術,可以對單個文件和任意級聯文件夾進行壓縮和解壓。 
  10.  * 需在代碼中自定義源輸入路徑和目標輸出路徑。 
  11.  * <p> 
  12.  * 在本段代碼中,實現的是解壓部分;壓縮部分見本包中compression部分。 
  13.  * @author HAN 
  14.  * 
  15.  */  
  16. public class CopyOfMyzipDecompressing {  
  17.       
  18.     public static void main(String[] args) {  
  19.         // TODO Auto-generated method stub   
  20.         long startTime=System.currentTimeMillis();  
  21.         try {  
  22.             ZipInputStream Zin=new ZipInputStream(new FileInputStream(  
  23.                     "C:\\Users\\HAN\\Desktop\\stock\\SpectreCompressed.zip"));//輸入源zip路徑   
  24.             BufferedInputStream Bin=new BufferedInputStream(Zin);  
  25.             String Parent="C:\\Users\\HAN\\Desktop"//輸出路徑(文件夾目錄)   
  26.             File Fout=null;  
  27.             ZipEntry entry;  
  28.             try {  
  29.                 while((entry = Zin.getNextEntry())!=null && !entry.isDirectory()){  
  30.                     Fout=new File(Parent,entry.getName());  
  31.                     if(!Fout.exists()){  
  32.                         (new File(Fout.getParent())).mkdirs();  
  33.                     }  
  34.                     FileOutputStream out=new FileOutputStream(Fout);  
  35.                     BufferedOutputStream Bout=new BufferedOutputStream(out);  
  36.                     int b;  
  37.                     while((b=Bin.read())!=-1){  
  38.                         Bout.write(b);  
  39.                     }  
  40.                     Bout.close();  
  41.                     out.close();  
  42.                     System.out.println(Fout+"解壓成功");      
  43.                 }  
  44.                 Bin.close();  
  45.                 Zin.close();  
  46.             } catch (IOException e) {  
  47.                 // TODO Auto-generated catch block   
  48.                 e.printStackTrace();  
  49.             }  
  50.         } catch (FileNotFoundException e) {  
  51.             // TODO Auto-generated catch block   
  52.             e.printStackTrace();  
  53.         }  
  54.         long endTime=System.currentTimeMillis();  
  55.         System.out.println("耗費時間: "+(endTime-startTime)+" ms");  
  56.     }  
  57.   
  58. }  
Copyright © Linux教程網 All Rights Reserved