Home  >  Article  >  Java  >  How to use Zip function in Java for file compression

How to use Zip function in Java for file compression

PHPz
PHPzOriginal
2023-06-26 14:10:191881browse

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