當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。