Java ZipFile entries()函数及示例
entries() 函数是 java.util.zip 包的一部分。该函数返回ZIP文件的条目枚举。
函数签名 。
public Enumeration entries()
语法
zip_file.entries();
参数: 该函数不需要任何参数
返回值: 该函数返回zip文件的条目枚举,该枚举包含zip文件中所有文件的ZipEntry。
异常: 如果压缩文件已被关闭,该函数会抛出 IllegalStateException 。
下面的程序说明了 entries() 函数的使用 情况
例1: 创建一个名为zip_file的文件,并使用 entries() 函数获得压缩文件的条目。”file.zip “是一个存在于f:目录下的压缩文件。
// 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<? extends ZipEntry> 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<? extends ZipEntry> 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://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#entries()