java 구현 zip, gzip, 7z,zlib 형식의 압축 패키지

5481 단어 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();
  }

본고에서 기술한 것이 당신에게 도움이 되기를 바랍니다. 자바는 zip, gzip, 7z, zlib 형식의 압축 포장 내용을 모두에게 소개합니다.계속해서 저희 사이트에 관심을 가져주시기 바랍니다!자바를 배우고 싶으면 본 사이트에 계속 관심을 가져도 됩니다.

좋은 웹페이지 즐겨찾기