java 中壓縮與解壓__java

來源:互聯網
上載者:User

package com.common.util;

import java.io.*;
import java.util.ArrayList;
import java.util.zip.*;

public class UnZip {

 public static int iCompressLevel; //壓縮比  取值範圍為0~9

 public static boolean bOverWrite; //是否覆蓋同名檔案 取值範圍為True和False

 private static ArrayList allFiles = new ArrayList();

 public static String sErrorMessage;

 public static ArrayList unZip(String zipPathFile, String DestPath) {
  ArrayList allFileName = new ArrayList();
  try {
   //先指定壓縮檔的位置和檔名,建立FileInputStream對象
   FileInputStream in = new FileInputStream(zipPathFile);
   //將fins傳入ZipInputStream中
   ZipInputStream zin = new ZipInputStream(in);
   ZipEntry ent = null;
   byte ch[] = new byte[256];
   while ((ent = zin.getNextEntry()) != null) {
    File zfile = new File(DestPath + ent.getName());
    File fpath = new File(zfile.getParentFile().getPath());
    if (ent.isDirectory()) {
     if (!zfile.exists())
      zfile.mkdirs();
     zin.closeEntry();
    } else {
     if (!fpath.exists())
      fpath.mkdirs();
     FileOutputStream fouts = new FileOutputStream(zfile);
     int i;
     allFileName.add(zfile.getAbsolutePath());
     while ((i = zin.read(ch)) != -1)
      fouts.write(ch, 0, i);
     zin.closeEntry();
     fouts.close();
    }
    //System.out.println("解壓檔案: " + ent.getName() + zipPathFile);
   }
   in.close();
   zin.close();
   sErrorMessage = "OK";
  } catch (Exception e) {
   System.err.println("Extract error:" + e.getMessage());
   sErrorMessage = e.getMessage();
  }
  allFiles.clear();
  System.out.println("完成");
  return allFileName;
 }
 
 public static void main(String[] args) {
  
  UnZip.unZip("c://order_20.rar", "c://un//");

 }
}
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.