成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

java如何解壓與壓縮文件夾

這篇文章將為大家詳細(xì)講解有關(guān)java如何解壓與壓縮文件夾,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供楊浦網(wǎng)站建設(shè)、楊浦做網(wǎng)站、楊浦網(wǎng)站設(shè)計(jì)、楊浦網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、楊浦企業(yè)網(wǎng)站模板建站服務(wù),十載楊浦做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。

注意:JDK7支持設(shè)置編碼設(shè)置編碼格式 zipFile,zipInputStream,zipOutputStream都增加了編碼格式,如果是jdk1.6需要其他的包輔助

下面為自帶jdk壓縮文件夾代碼:

public void dozip(String srcfile, String zipfile) throws IOException {
  String temp = "";
  File src = new File(srcfile);
  File zipFile=new File(zipfile);
  //判斷要壓縮的文件存不存在
  if (!src.exists()) {
    System.err.println("要壓縮的文件不存在!");
    System.exit(1);
  }
  //如果說(shuō)壓縮路徑不存在,則創(chuàng)建
  if (!zipFile.getParentFile().exists()) {
    zipFile.getParentFile().mkdirs();
//   System.out.println("創(chuàng)建ok");
  }
  // 封裝壓縮的路徑
  BufferedOutputStream bos=new BufferedOutputStream(new FileOutputStream(zipfile));
  //這里可以加入校驗(yàn)
//CheckedOutputStream cos = new CheckedOutputStream(bos,new CRC32());  
  //還可以設(shè)置壓縮格式,默認(rèn)UTF-8
  Charset charset = Charset.forName("GBK"); 
  ZipOutputStream zos = new ZipOutputStream(bos,charset);
  zip(src, zos, temp);
  //關(guān)閉流
  zos.flush();
  zos.close();
  System.out.println("壓縮完成!");
  System.out.println("壓縮文件的位置是:" + zipfile);
// System.out.println("檢驗(yàn)和:"+cos.getChecksum().getValue());
  }

 private void zip(File file, ZipOutputStream zos, String temp)
    throws IOException {
  // 如果不加"/"將會(huì)作為文件處理,空文件夾不需要讀寫(xiě)操作
  if (file.isDirectory()) {
    String str = temp + file.getName() + "/";
    zos.putNextEntry(new ZipEntry(str));
    File[] files = file.listFiles();
    for (File file2 : files) {
    zip(file2, zos, str);
    }
  } else {
    // System.out.println("當(dāng)前文件的父路徑:"+temp);
    ZipFile(file, zos, temp);
  }
  }

  private void ZipFile(File srcfile, ZipOutputStream zos, String temp)
    throws IOException {
  // 默認(rèn)的等級(jí)壓縮-1
  // zos.setLevel(xxx);
  // 封裝待壓縮文件
  BufferedInputStream bis = new BufferedInputStream(new FileInputStream(
    srcfile));
  zos.putNextEntry(new ZipEntry(temp + srcfile.getName()));

  byte buf[] = new byte[1024];
  int len;
  while ((len = bis.read(buf)) != -1) {
    zos.write(buf, 0, len);
  }
  //按標(biāo)準(zhǔn)需要關(guān)閉當(dāng)前條目,不寫(xiě)也行
  zos.closeEntry();
  bis.close();
  }

下面為解壓:

這里先說(shuō)一下好壓的解壓規(guī)則:

1.如果解壓到與壓縮文件同名的文件夾,則直接解壓

如果自定義了其他文件夾xxx,則先創(chuàng)建xxx,再放入解壓后的文件夾

2.好壓壓縮的時(shí)候,是采用GBK格式的,所以在解壓的時(shí)候,為了統(tǒng)一,采用GBK解壓另外再說(shuō)一下WINRAR,因?yàn)镽AR壓縮是申請(qǐng)了專利(商業(yè)軟件),所以RAR壓縮算法是不公開(kāi)的,但是解壓算法是有的,其壓縮默認(rèn)也是GBK格式的;
經(jīng)過(guò)測(cè)試,發(fā)現(xiàn),不管壓縮的時(shí)候采用UTF-8還是GBK,解壓的時(shí)候用GBK都可以正確解壓?。ň唧w原因還不清楚)

本java程序是直接解壓到文件夾的,默認(rèn)解壓到與壓縮文件同路徑

如果解壓編碼有問(wèn)題,則報(bào)錯(cuò):java.lang.IllegalArgumentException: MALFORMED

如果壓縮文件有密碼:則報(bào)錯(cuò):java.util.zip.ZipException: encrypted ZIP entry not supporte

//方法1:
public void unZip(String zipfile) throws IOException {
  //檢查是否是zip文件,并判斷文件是否存在
  checkFileName(zipfile);
  long startTime = System.currentTimeMillis();
  File zfile=new File(zipfile);
  //獲取待解壓文件的父路徑
  String Parent=zfile.getParent()+"/";
  FileInputStream fis=new FileInputStream(zfile);
  Charset charset = Charset.forName("GBK");//默認(rèn)UTF-8
// CheckedInputStream cis = new CheckedInputStream(fis,new CRC32());
  ZipInputStream zis = new ZipInputStream(fis,charset);// 輸入源zip路徑
  ZipEntry entry=null;
  BufferedOutputStream bos=null;
  while ((entry=zis.getNextEntry())!=null) {
    if (entry.isDirectory()) {
    File filePath=new File(Parent+entry.getName());
    //如果目錄不存在,則創(chuàng)建
    if (!filePath.exists()) {
      filePath.mkdirs();
    }
    }else{
    FileOutputStream fos=new FileOutputStream(Parent+entry.getName());
    bos=new BufferedOutputStream(fos);
    byte buf[] = new byte[1024];
    int len;
    while ((len = zis.read(buf)) != -1) {
      bos.write(buf, 0, len);
    }
    zis.closeEntry();
    //關(guān)閉的時(shí)候會(huì)刷新
    bos.close();
    }
  }
  zis.close();
  long endTime = System.currentTimeMillis();
  System.out.println("解壓完成!所需時(shí)間為:"+(endTime-startTime)+"ms");
// System.out.println("校驗(yàn)和:"+cis.getChecksum().getValue());
  }

  private void checkFileName(String name) {
  //文件是否存在
  if (!new File(name).exists()) {
    System.err.println("要解壓的文件不存在!");
    System.exit(1);
  }
  // 判斷是否是zip文件
  int index = name.lastIndexOf(".");
  String str=name.substring(index+1);
  if (!"zip".equalsIgnoreCase(str)) {
    System.err.println("不是zip文件,無(wú)法解壓!");
    System.exit(1);
  } 
    }

方法2:

利用zipFile解壓,方法跟ZipInputStream類似,都是連續(xù)取到Entry,然后再用Entry判斷,聽(tīng)說(shuō)zipFile內(nèi)建了緩沖流,所以對(duì)于同一個(gè)文件解壓多次效率比ZipInputStream高些

 public void dozip(String zipfile) throws IOException {
  checkFileName(zipfile);
  long startTime = System.currentTimeMillis();
  // 獲取待解壓文件的父路徑
  File zfile = new File(zipfile);
  String Parent = zfile.getParent() + "/";
  // 設(shè)置,默認(rèn)是UTF-8
  Charset charset = Charset.forName("GBK");
  ZipFile zip = new ZipFile(zipfile, charset);
  ZipEntry entry = null;
  //封裝解壓后的路徑
  BufferedOutputStream bos=null;
  //封裝待解壓文件路徑
  BufferedInputStream bis=null;
  Enumeration<ZipEntry> enums = (Enumeration<ZipEntry>) zip.entries();
  while (enums.hasMoreElements()) {
    entry = enums.nextElement();
    if (entry.isDirectory()) {
    File filePath = new File(Parent + entry.getName());
    // 如果目錄不存在,則創(chuàng)建
    if (!filePath.exists()) {
      filePath.mkdirs();
    }
    }else{
    bos=new BufferedOutputStream(new FileOutputStream(Parent + entry.getName()));
    //獲取條目流
bis =new BufferedInputStream(zip.getInputStream(entry));
    byte buf[] = new byte[1024];
    int len;
    while ((len = bis.read(buf)) != -1) {
      bos.write(buf, 0, len);
    }

    bos.close();
    }
  }
  bis.close();
  zip.close();
  System.out.println("解壓后的路徑是:"+Parent);
  long endTime = System.currentTimeMillis();
  System.out.println("解壓成功,所需時(shí)間為:"+(endTime-startTime)+"ms");
  }

  private void checkFileName(String name) {
  // 文件是否存在
  if (!new File(name).exists()) {
    System.err.println("要解壓的文件不存在!");
    System.exit(1);
  }
  // 判斷是否是zip文件
  int index = name.lastIndexOf(".");
  String str = name.substring(index + 1);
  if (!"zip".equalsIgnoreCase(str)) {
    System.err.println("不是zip文件,無(wú)法解壓!");
    System.exit(1);
  }
  }

關(guān)于“java如何解壓與壓縮文件夾”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

網(wǎng)站題目:java如何解壓與壓縮文件夾
鏈接URL:http://jinyejixie.com/article8/ggihip.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、電子商務(wù)、自適應(yīng)網(wǎng)站、標(biāo)簽優(yōu)化Google、企業(yè)建站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名
西峡县| 双桥区| 交城县| 满洲里市| 浏阳市| 西乌| 河东区| 铁岭县| 呼伦贝尔市| 尉犁县| 武冈市| 绥德县| 禄劝| 含山县| 汕尾市| 舒兰市| 平乡县| 潮安县| 黎川县| 肃北| 金昌市| 内江市| 阳原县| 文登市| 玉溪市| 朝阳区| 辽源市| 名山县| 沙田区| 庐江县| 万宁市| 华坪县| 图木舒克市| 房山区| 政和县| 龙山县| 大埔区| 山丹县| 德钦县| 平顶山市| 西畴县|