Java如何實現(xiàn)ZIP壓縮與解壓,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
成都創(chuàng)新互聯(lián)公司專注于紅河哈尼網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供紅河哈尼營銷型網(wǎng)站建設,紅河哈尼網(wǎng)站制作、紅河哈尼網(wǎng)頁設計、紅河哈尼網(wǎng)站官網(wǎng)定制、成都微信小程序服務,打造紅河哈尼網(wǎng)絡公司原創(chuàng)品牌,更為您提供紅河哈尼網(wǎng)站排名全網(wǎng)營銷落地服務。
程序?qū)崿F(xiàn)了ZIP壓縮。共分為2部分 : 壓縮(compression)與解壓(decompression)
大致功能包括用了多態(tài),遞歸等JAVA核心技術(shù),可以對單個文件和任意級聯(lián)文件夾進行壓縮和解壓。 需在代碼中自定義源輸入路徑和目標輸出路徑。
package com.han; import java.io.*; import java.util.zip.*; /** * 程序?qū)崿F(xiàn)了ZIP壓縮。共分為2部分 : * 壓縮(compression)與解壓(decompression) * <p> * 大致功能包括用了多態(tài),遞歸等JAVA核心技術(shù),可以對單個文件和任意級聯(lián)文件夾進行壓縮和解壓。 * 需在代碼中自定義源輸入路徑和目標輸出路徑。 * <p> * 在本段代碼中,實現(xiàn)的是壓縮部分;解壓部分見本包中decompression部分。 * @author HAN * */ public class CopyOfMyZipCompressing { private int k=1; //定義遞歸次數(shù)變量 public CopyOfMyZipCompressing() { // TODO Auto-generated constructor stub } public static void main(String[] args) { // TODO Auto-generated method stub long startTime=System.currentTimeMillis(); CopyOfMyZipCompressing book=new CopyOfMyZipCompressing(); try { book.zip("C:\\Users\\HAN\\Desktop\\stock\\SpectreCompressed.zip", //自定義的zip輸出路徑 new File("C:\\Users\\HAN\\Desktop\\CombinedSpectres.txt")); //自定義的源輸入路徑,即要壓縮的文件或文件夾 } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } long endTime=System.currentTimeMillis(); System.out.println("耗費時間: "+(endTime-startTime)+" ms"); } private void zip(String zipFileName, File inputFile) throws Exception{ System.out.println("壓縮中..."); ZipOutputStream out=new ZipOutputStream(new FileOutputStream(zipFileName)); BufferedOutputStream bo=new BufferedOutputStream(out); zip(out,inputFile, "/"+inputFile.getName(),bo); bo.close(); out.close(); //輸出流關閉 System.out.println("壓縮完成"); } private void zip(ZipOutputStream out, File f, String base, BufferedOutputStream bo) throws Exception{ //方法重載 if (f.isDirectory()){ File[] fl=f.listFiles(); for(int i=0;i<fl.length;i++){ zip(out, fl[i],base+"/"+fl[i].getName(),bo); //遞歸遍歷子文件夾 } System.out.println("第"+k+"次遞歸"); k++; }else{ out.putNextEntry(new ZipEntry(base)); // 創(chuàng)建zip壓縮進入點base System.out.println(base); FileInputStream in=new FileInputStream(f); BufferedInputStream bi=new BufferedInputStream(in); int b; while((b=bi.read())!=-1){ bo.write(b); //將字節(jié)流寫入當前zip目錄 } bi.close(); in.close(); //輸入流關閉 } } }
package com.han; import java.io.*; import java.util.zip.*; /** * 程序?qū)崿F(xiàn)了ZIP壓縮。共分為2部分 : * 壓縮(compression)與解壓(decompression) * <p> * 大致功能包括用了多態(tài),遞歸等JAVA核心技術(shù),可以對單個文件和任意級聯(lián)文件夾進行壓縮和解壓。 * 需在代碼中自定義源輸入路徑和目標輸出路徑。 * <p> * 在本段代碼中,實現(xiàn)的是解壓部分;壓縮部分見本包中compression部分。 * @author HAN * */ public class CopyOfMyzipDecompressing { public static void main(String[] args) { // TODO Auto-generated method stub long startTime=System.currentTimeMillis(); try { ZipInputStream Zin=new ZipInputStream(new FileInputStream( "C:\\Users\\HAN\\Desktop\\stock\\SpectreCompressed.zip"));//輸入源zip路徑 BufferedInputStream Bin=new BufferedInputStream(Zin); String Parent="C:\\Users\\HAN\\Desktop"; //輸出路徑(文件夾目錄) File Fout=null; ZipEntry entry; try { while((entry = Zin.getNextEntry())!=null && !entry.isDirectory()){ Fout=new File(Parent,entry.getName()); if(!Fout.exists()){ (new File(Fout.getParent())).mkdirs(); } FileOutputStream out=new FileOutputStream(Fout); BufferedOutputStream Bout=new BufferedOutputStream(out); int b; while((b=Bin.read())!=-1){ Bout.write(b); } Bout.close(); out.close(); System.out.println(Fout+"解壓成功"); } Bin.close(); Zin.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } long endTime=System.currentTimeMillis(); System.out.println("耗費時間: "+(endTime-startTime)+" ms"); } }
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。
當前名稱:Java如何實現(xiàn)ZIP壓縮與解壓
分享URL:http://m.rwnh.cn/article28/pcdocp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導航、網(wǎng)站設計公司、標簽優(yōu)化、App開發(fā)、網(wǎng)站制作、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)