size()函数是java.util.zip软件包的一部分。该函数返回zip文件的条目数。
函数签名:
public int size()
用法:
zip_file.size();
参数:该函数不需要任何参数
返回值:该函数返回一个整数,即zip文件的条目数
Exceptions:如果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://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#size()
相关用法
- Java ZipFile getComment()用法及代码示例
- Java ZipFile getEntry()用法及代码示例
- Java ZipFile entries()用法及代码示例
- Java ZipFile getName()用法及代码示例
- Java ZipFile getInputStream()用法及代码示例
- Java AbstractMap size()用法及代码示例
- Java SortedMap size()用法及代码示例
- Java CharArrayWriter size()用法及代码示例
- Java SortedSet size()用法及代码示例
- Java BlockingDeque size()用法及代码示例
- Java ConcurrentSkipListMap size()用法及代码示例
- Java DelayQueue size()用法及代码示例
- Java List size()用法及代码示例
- Java ArrayList size()用法及代码示例
- Java AbstractCollection size()用法及代码示例
注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 ZipFile size() function in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。