当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ZipFile getComment()用法及代码示例


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

函数签名:

public String getComment()

用法:


zip_file.getComment();

参数:该函数不需要任何参数
返回值:该函数返回一个字符串,它是zip文件的注释

Exceptions:如果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://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#getComment()



相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 ZipFile getComment() function in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。