search
HomeJavajavaTutorialHow to use Zip function in Java for file compression

How to use Zip function in Java for file compression

Jun 26, 2023 pm 02:10 PM
javacompressionzip

Compressing files is a common operation that can save disk space and network transmission time, and Java provides the Zip function for file compression. This article will show how to use the Zip function in Java for file compression through a detailed introduction and example demonstration.

1. Introduction to Zip function

The Zip function is a compression and packaging tool library provided in Java. You can use this function to compress a file or folder into a Zip format file. Zip function mainly uses two classes, ZipOutputStream and ZipEntry. ZipOutputStream is responsible for outputting compressed files, and ZipEntry is a separate entity in the compressed file. The usage of these two classes will be introduced in detail below.

2. ZipOutputStream class

The ZipOutputStream class is the main compression class in Java. It can compress data into a Zip format output stream so that it can be written to a file or network connection. The main methods in the ZipOutputStream class include:

  1. addEntry(ZipEntry entry): Add a new entity to the compressed file.
  2. close(): Close the output stream.
  3. putNextEntry(ZipEntry entry): Start writing a new entity into the compressed file. This function must be called before each entity can be written.
  4. write(byte[] buf, int offset, int len): Write data to the current entity.

3. ZipEntry class

The ZipEntry class is a single entity in a compressed file. For each compressed entity, an instance of the ZipEntry class needs to be created. The main methods in the ZipEntry class include:

  1. getName(): Get the name of the entity in the compressed file.
  2. setSize(long size): Specify the size of the entity.
  3. setTime(long time): Specifies the modification time of the entity in the compressed file.
  4. setTime(long time): Specifies the creation time of the entity in the compressed file.
  5. setMethod(int method): Specifies the compression method used by this entity.
  6. getSize(): Get the size of the entity.

4. Example Demonstration

The following will show you how to use the Zip function in Java to compress files through a complete demonstration. Suppose there is a folder "/Users/Name/Desktop/File" that needs to be compressed. You can follow the following steps:

  1. First create a ZipOutputStream object and specify the name of the output file.

FileOutputStream fos = new FileOutputStream("Test.zip");
ZipOutputStream zipOut = new ZipOutputStream(fos);

  1. Traverse the folders that need to be compressed , get the files and folders therein.

File fileToZip = new File("/Users/Name/Desktop/File");
File[] files = fileToZip.listFiles();

  1. Traverse the obtained files and folders and add the folders and files to the compressed file one by one.

for (File file : files) {

if (file.isDirectory()) {
    // 如果是文件夹,则需要递归遍历其中的所有文件和子文件夹
    zipSubFolder(zipOut, file, file.getParent().length());
} else {
    // 如果是文件,则将其添加到ZipOutputStream中
    addToZip(file, zipOut);
}

}

  1. If there are subfolders, you need to recursively call the zipSubFolder function to traverse.

private static void zipSubFolder(ZipOutputStream zipOut, File folder, int basePathLength) throws IOException {

File[] files = folder.listFiles();
for (File file : files) {
    if (file.isDirectory()) {
        // 递归遍历当前文件夹中的子文件夹
        zipSubFolder(zipOut, file, basePathLength);
    } else {
        // 将当前文件夹中的文件添加到ZipOutputStream中
        String relativePath = file.getAbsolutePath().substring(basePathLength);
        addToZip(file, zipOut, relativePath);
    }
}

}

  1. Add files to ZipOutputStream The method is shown below.

private static void addToZip(File file, ZipOutputStream zipOut) throws IOException {

FileInputStream fis = new FileInputStream(file);
ZipEntry zipEntry = new ZipEntry(file.getName());
zipOut.putNextEntry(zipEntry);

byte[] bytes = new byte[1024];
int length;
while ((length = fis.read(bytes)) >= 0) {
    zipOut.write(bytes, 0, length);
}

zipOut.closeEntry();
fis.close();

}

  1. If there are subfolders, you need to add them Relative paths are added to ZipEntry.

private static void addToZip(File file, ZipOutputStream zipOut, String relativePath) throws IOException {

FileInputStream fis = new FileInputStream(file);
ZipEntry zipEntry = new ZipEntry(relativePath);
zipOut.putNextEntry(zipEntry);

byte[] bytes = new byte[1024];
int length;
while ((length = fis.read(bytes)) >= 0) {
    zipOut.write(bytes, 0, length);
}

zipOut.closeEntry();
fis.close();

}

  1. Finally, you need to close the ZipOutputStream object and release it resource.

zipOut.close();

The above is a complete demonstration of file compression using the Zip function in Java. Readers can make appropriate modifications according to their own needs. It should be noted that when using the Zip function for file compression, do not compress files that are too large, otherwise memory overflow problems may occur.

The above is the detailed content of How to use Zip function in Java for file compression. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?Mar 17, 2025 pm 05:46 PM

The article discusses using Maven and Gradle for Java project management, build automation, and dependency resolution, comparing their approaches and optimization strategies.

How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?Mar 17, 2025 pm 05:45 PM

The article discusses creating and using custom Java libraries (JAR files) with proper versioning and dependency management, using tools like Maven and Gradle.

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?Mar 17, 2025 pm 05:43 PM

The article discusses using JPA for object-relational mapping with advanced features like caching and lazy loading. It covers setup, entity mapping, and best practices for optimizing performance while highlighting potential pitfalls.[159 characters]

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment