Java ZipFile getComment()函数及示例
getComment() 函数是java.util.zip包的一部分。该函数返回一个字符串,该字符串是 zip 文件的注释。
函数签名 。
public String getComment()
语法
zip_file.getComment();
参数: 该函数不需要任何参数
返回值: 该函数返回一个字符串,是压缩文件的注释。
异常: 如果压缩文件已被关闭,该函数会抛出 IllegalStateException 。
下面的程序说明了getComment()函数的用法
例1: 创建一个名为zip_file的文件并使用getComment()函数获得注释。”file.zip “是一个存在于f:目录下的zip文件。
// Java program to demonstrate the
// use of getComment() 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 comment
// of the zip file
// using getComment() function
System.out.println("comment = "
+ zip_file.getComment());
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
输出
comment = This is a zip file comment
例2: 创建一个名为zip_file的文件,用getComment()函数获取注释。如果我们关闭文件后再调用getComment()函数,该函数会产生异常。
// Java program to demonstrate the
// use of getComment() 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 comment
// of the zip file
// using getComment() function
System.out.println("comment = "
+ zip_file.getComment());
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
输出
zip file closed
**参考资料: ** https://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#getComment()