当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ZipFile entries()用法及代码示例


entries()函数是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<? 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()



相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 ZipFile entries() function in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。