📜  Java中的 ZipFile entries()函数及示例

📅  最后修改于: 2022-05-13 01:55:01.359000             🧑  作者: Mango

Java中的 ZipFile entries()函数及示例

entry()函数是Java.util.zip 包的一部分。该函数返回 zip 文件的 zip 文件条目的枚举。

函数签名:

public Enumeration entries()

句法:

zip_file.entries();

参数:该函数不需要任何参数

返回值:函数返回zip文件的zip文件条目的枚举,该枚举包含了zip文件中所有文件的ZipEntry。

异常:如果 zip 文件已关闭,该函数将引发IllegalStateException

下面的程序说明了 entries()函数的使用

示例 1:创建一个名为 zip_file 的文件,并使用 entries()函数获取 zip 文件条目。 “file.zip”是存在于 f: 目录中的 zip 文件。

// Java program to demonstrate the
// use of entries() function
  
import java.util.zip.*;
import java.util.Enumeration;
  
public class solution {
    public static void main(String args[])
    {
  
        try {
  
            // Create a Zip File
            ZipFile zip_file
                = new ZipFile("f:\\file.zip");
  
            // get the Zip Entries using
            // the entries() function
            Enumeration entries
                = zip_file.entries();
  
            System.out.println("Entries:");
  
            // iterate through all the entries
            while (entries.hasMoreElements()) {
                // get the zip entry
                ZipEntry entry = entries.nextElement();
  
                // display the entry
                System.out.println(entry.getName());
            }
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}

输出:

Entries:
file3.cpp
file1.cpp
file2.cpp

示例 2:创建一个名为 zip_file 的文件,并使用 entries()函数获取 zip 文件条目。如果我们关闭文件然后调用函数entries(),这个函数会抛出异常。

// Java program to demonstrate the
// use of entries() function
  
import java.util.zip.*;
import java.util.Enumeration;
  
public class solution {
    public static void main(String args[])
    {
  
        try {
  
            // Create a Zip File
            ZipFile zip_file
                = new ZipFile("f:\\file.zip");
  
            // close the zip file
            zip_file.close();
  
            // get the Zip Entries using
            // the entries() function
            Enumeration entries
                = zip_file.entries();
  
            System.out.println("Entries:");
  
            // iterate through all the entries
            while (entries.hasMoreElements()) {
  
                // get the zip entry
                ZipEntry entry = entries.nextElement();
  
                // display the entry
                System.out.println(entry.getName());
            }
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}

输出:

zip file closed

参考: https: Java/util/zip/ZipFile.html#entries()