getComment()函数是java.util.zip软件包的一部分。该函数返回特定ZipEntry的Comment。函数签名:
public String getComment()
用法:
zip_entry.getComment();
参数:此函数不需要任何参数。
返回值:该函数返回String对象,此ZipEntry的注释。
Exceptions:该函数不会引发任何异常。
以下示例程序旨在说明getComment()函数的使用
范例1:我们将创建一个名为zip_file的文件,并使用getEntry()函数获取zip文件条目,然后获取指定ZipEntry的注释。“ file.zip”是f:目录中的一个zip文件。
// Java program to demonstrate the
// use of getComment() function
import java.util.zip.*;
import java.util.Enumeration;
import java.util.*;
import java.io.*;
public class solution {
public static void main(String args[])
{
try {
// Create a Zip File
ZipFile zip_file = new ZipFile("f:\\file1.zip");
// get the Zip Entry using
// the getEntry() function
ZipEntry entry = zip_file.getEntry("file.zip");
// get the Comment
// using the getComment()
// function
String input = entry.getComment();
// Display the comment
System.out.println("Comment:" + input);
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
输出:
Comment:This is a Zip Entry comment
范例2:我们将创建一个名为zip_file的文件,并使用getEntry()函数获取zip文件条目,然后获取指定ZipEntry的注释。“ file.zip”是f:目录中的一个zip文件。
未设置注释时。
// Java program to demonstrate the
// use of getComment() function
import java.util.zip.*;
import java.util.Enumeration;
import java.util.*;
import java.io.*;
public class solution {
public static void main(String args[])
{
try {
// Create a Zip File
ZipFile zip_file = new ZipFile("f:\\file1.zip");
// get the Zip Entry using
// the getEntry() function
ZipEntry entry = zip_file.getEntry("file.zip");
// get the Comment
// using the getComment()
// function
String input = entry.getComment();
// Display the comment
System.out.println("Comment:" + input);
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
输出:
Comment:null
参考: https://docs.oracle.com/javase/9/docs/api/java/util/zip/ZipEntry.html#getComment-
相关用法
- Java ZipFile getComment()用法及代码示例
- Java ZipEntry setCrc()用法及代码示例
- Java ZipEntry setLastAccessTime()用法及代码示例
- Java ZipEntry getCrc()用法及代码示例
- Java ZipEntry getCreationTime()用法及代码示例
- Java ZipEntry setLastModifiedTime()用法及代码示例
- Java ZipEntry getLastModifiedTime()用法及代码示例
- Java ZipEntry setCreationTime()用法及代码示例
- Java ZipEntry setComment()用法及代码示例
- Java ZipEntry getCompressedSize()用法及代码示例
- Java ZipEntry getLastAccessTime()用法及代码示例
- Java ZipEntry getName()用法及代码示例
- Java ZipEntry setCompressedSize()用法及代码示例
- Java ZipEntry getMethod()用法及代码示例
- Java ZipEntry getTime()用法及代码示例
注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 Java ZipEntry getComment() function with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。