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

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

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

getEntry()函数是Java.util.zip 包的一部分。该函数返回由字符串参数指定的 zip 文件中存在的文件的 ZipEntry。

函数签名:

public ZipEntry getEntry(String name)

句法:

zip_file.getEntry();

参数:该函数接受一个字符串参数,即文件名。
返回值:函数返回字符串参数指定的zip文件的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: 目录中的 zip 文件,而 zip 文件中不存在“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: Java Java.lang.String)