Java ZipFile getEntry()函数及示例
getEntry() 函数是 java.util.zip 包的一部分。该函数返回由字符串参数指定的 zip 文件中存在的 ZipEntry 文件。
函数签名
public ZipEntry getEntry(String name)
语法
zip_file.getEntry();
参数: 该函数接收一个字符串参数,即文件名。
返回值: 该函数返回由字符串参数指定的ZipEntry。
异常: 如果Zip文件已经关闭,该函数会抛出 IllegalStateException 。
下面的程序说明了getEntry()函数的用途
例1: 创建一个名为zip_file的文件,并使用getEntry()函数获得zip文件条目。”file.zip “是一个存在于f: 目录下的zip文件。
// Java program to demonstrate the
// use of getEntry() 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 Entry using
// the getEntry() function
ZipEntry entry
= zip_file.getEntry("file1.cpp");
// display the Zip Entry
System.out.println("Name: "
+ entry.getName());
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
输出
Name: file1.cpp
例2: 创建一个名为zip_file的文件,并使用getEntry()函数得到zip文件的条目。”file.zip “是一个存在于f:目录下的压缩文件,而 “file4.cpp “不存在于该压缩文件中。
// Java program to demonstrate the
// use of getEntry() 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 Entry using
// the getEntry() function
ZipEntry entry
= zip_file.getEntry("file4.cpp");
// display the Zip Entry
System.out.println("Name: "
+ entry.getName());
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
输出
null
**参考资料: ** https://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#getEntry(java.lang.String)