程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> java完成zip,gzip,7z,zlib格局的緊縮打包

java完成zip,gzip,7z,zlib格局的緊縮打包

編輯:關於JAVA

java完成zip,gzip,7z,zlib格局的緊縮打包。本站提示廣大學習愛好者:(java完成zip,gzip,7z,zlib格局的緊縮打包)文章只能為提供參考,不一定能成為您想要的結果。以下是java完成zip,gzip,7z,zlib格局的緊縮打包正文


本文重要引見的是經由過程應用java的相干類可以完成對文件或文件夾的緊縮。

zlib是一種數據緊縮法式庫,它的設計目的是處置純真的數據(而不論數據的起源是甚麼)。

7z 是一種新的緊縮格局,它具有今朝最高的緊縮比。

gzip是一種文件緊縮對象(或該緊縮對象發生的緊縮文件格局),它的設計目的是處置單個的文件。gzip在緊縮文件中的數據時應用的就是zlib。為了保留與文件屬性有關的信息,gzip須要在緊縮文件(*.gz)中保留更多的頭信息內容,而zlib不消斟酌這一點。但gzip只實用於單個文件,所以我們在UNIX/Linux上常常看到的緊縮包後綴都是*.tar.gz或*.tgz,也就是先用tar把多個文件打包成單個文件,再用gzip緊縮的成果。

zip是實用於緊縮多個文件的格局(響應的對象有PkZip和WinZip等),是以,zip文件還要進一步包括文件目次構造的信息,比gzip的頭信息更多。但須要留意,zip格局可采取多種緊縮算法,我們罕見的zip文件年夜多不是用zlib的算法緊縮的,其緊縮數據的格局與gzip年夜紛歧樣。

所以,你應該依據你的詳細需求,選擇分歧的緊縮技巧:假如只須要緊縮/解緊縮數據,你可以直接用zlib完成,假如須要生成gzip格局的文件或解壓其他對象的緊縮成果,你就必需用gzip或zip等相干的類來處置了。

maven依附
 

<dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-compress</artifactId>
      <version>1.12</version>
    </dependency> 

zip格局

public static void zip(String input, String output, String name) throws Exception {
    ZipOutputStream out = new ZipOutputStream(new FileOutputStream(output));
    String[] paths = input.split("\\|");
    File[] files = new File[paths.length];
    byte[] buffer = new byte[1024];
    for (int i = 0; i < paths.length; i++) {
      files[i] = new File(paths[i]);
    }
    for (int i = 0; i < files.length; i++) {
      FileInputStream fis = new FileInputStream(files[i]);
      if (files.length == 1 && name != null) {
        out.putNextEntry(new ZipEntry(name));
      } else {
        out.putNextEntry(new ZipEntry(files[i].getName()));
      }
      int len;
      // 讀入須要下載的文件的內容,打包到zip文件
      while ((len = fis.read(buffer)) > 0) {
        out.write(buffer, 0, len);
      }
      out.closeEntry();
      fis.close();
    }
    out.close();
  }

gzip打包

public static void gzip(String input, String output, String name) throws Exception {
    String compress_name = null;
    if (name != null) {
      compress_name = name;
    } else {
      compress_name = new File(input).getName();
    }
    byte[] buffer = new byte[1024];
    try {
      GzipParameters gp = new GzipParameters();  //設置緊縮文件裡的文件名
      gp.setFilename(compress_name);
      GzipCompressorOutputStream gcos = new GzipCompressorOutputStream(new FileOutputStream(output), gp);
      FileInputStream fis = new FileInputStream(input);
      int length;
      while ((length = fis.read(buffer)) > 0) {
        gcos.write(buffer, 0, length);
      }
      fis.close();
      gcos.finish();
    } catch (IOException ioe) {
      ioe.printStackTrace();
    }
  }

7z打包

public static void z7z(String input, String output, String name) throws Exception {
    try {
      SevenZOutputFile sevenZOutput = new SevenZOutputFile(new File(output));
      SevenZArchiveEntry entry = null;

      String[] paths = input.split("\\|");
      File[] files = new File[paths.length];
      for (int i = 0; i < paths.length; i++) {
        files[i] = new File(paths[i].trim());
      }
      for (int i = 0; i < files.length; i++) {
        BufferedInputStream instream = null;
        instream = new BufferedInputStream(new FileInputStream(paths[i]));
        if (name != null) {
          entry = sevenZOutput.createArchiveEntry(new File(paths[i]), name);
        } else {
          entry = sevenZOutput.createArchiveEntry(new File(paths[i]), new File(paths[i]).getName());
        }
        sevenZOutput.putArchiveEntry(entry);
        byte[] buffer = new byte[1024];
        int len;
        while ((len = instream.read(buffer)) > 0) {
          sevenZOutput.write(buffer, 0, len);
        }
        instream.close();
        sevenZOutput.closeArchiveEntry();
      }
      sevenZOutput.close();
    } catch (IOException ioe) {
      System.out.println(ioe.toString() + " " + input);
    }
  }

zlib打包

public static void zlib(String input, String output) throws Exception {

//    DeflaterOutputStream dos = new DeflaterOutputStream(new FileOutputStream(output));
    DeflateParameters dp = new DeflateParameters();
    dp.setWithZlibHeader(true);
    DeflateCompressorOutputStream dcos = new DeflateCompressorOutputStream(new FileOutputStream(output),dp);
    FileInputStream fis = new FileInputStream(input);
    int length = (int) new File(input).length();
    byte data[] = new byte[length];
    // int length;
    while ((length = fis.read(data)) > 0) {
      dcos.write(data, 0, length);
    }
    fis.close();
    dcos.finish();
    dcos.close();
  }

願望本文所述對你有所贊助,java完成zip,gzip,7z,zlib格局的緊縮打包內容就給年夜家引見到這裡了。願望年夜家持續存眷我們的網站!想要進修java可以持續存眷本站。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved