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

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

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

size()函数是Java.util.zip 包的一部分。该函数返回 zip 文件的条目数。

函数签名:

public int size()

句法:

zip_file.size();

参数:该函数不需要任何参数
返回值:函数返回一个Integer,即zip文件的条目数
异常:如果 zip 文件已关闭,该函数将引发IllegalStateException

下面的程序说明了 size()函数的使用
示例 1:创建一个名为 zip_file 的文件并使用 size()函数获取条目数。“file.zip”是 f: 目录中的一个 zip 文件。

// Java program to demonstrate the
// use of size() function
  
import java.util.zip.*;
  
public class solution {
    public static void main(String args[])
    {
        try {
  
            // Create a Zip File
            ZipFile zip_file
                = new ZipFile("f:\\file.zip");
  
            // Display the number of entries
            // of the zip file
            // using size() function
            System.out.println("number of entries = "
                               + zip_file.size());
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}

输出:

number of entries= 7

示例 2:创建一个名为 zip_file 的文件并使用 size()函数获取条目数。如果我们关闭文件然后调用函数size(),我们将尝试查看函数是否抛出异常。

// Java program to demonstrate the
// use of size() function
  
import java.util.zip.*;
  
public class solution {
    public static void main(String args[])
    {
  
        try {
  
            // Create a Zip File
            ZipFile zip_file
                = new ZipFile("f:\\file.zip");
  
            // close the file
            zip_file.close();
  
            // Display the number of entries
            // of the zip file
            // using size() function
            System.out.println("number of entries = "
                               + zip_file.size());
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}

输出:

zip file closed

参考: https: Java/util/zip/ZipFile.html#size()