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

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

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

getComment()函数是Java.util.zip 包的一部分。该函数返回一个字符串,它是 zip 文件的注释。

函数签名:

public String getComment()

句法:

zip_file.getComment();

参数:该函数不需要任何参数
返回值:函数返回一个String,为zip文件的注释

异常:如果 zip 文件已关闭,该函数将引发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: Java/util/zip/ZipFile.html#getComment()