📜  Java ZipEntry getComment()函数及示例

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

Java ZipEntry getComment()函数及示例


getComment()函数是Java.util.zip 包的一部分。该函数返回特定 ZipEntry 的 Comment。
函数签名:

public String getComment()

句法 :

zip_entry.getComment();

参数:此函数不需要参数。
返回值:函数返回String对象,这个ZipEntry的注释。
异常:该函数不会抛出任何异常。

下面的程序说明了 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–