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


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


getName()函数是java.util.zip软件包的一部分。该函数返回ZipFile对象的路径名。

函数签名:

public String getName()

用法:


zip_file.getName();

参数:该函数不需要任何参数
返回值:该函数返回一个字符串,它是zip文件的路径名
Exceptions:该函数不会引发任何异常。

以下示例程序旨在说明getName()函数的使用

范例1:创建一个名为zip_file的文件,并使用getName()函数获取名称。 “file.zip”是f:目录中的一个zip文件。

// Java program to demonstrate the 
// use of getName() 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 name of the zip file 
            // using getName() function 
            System.out.println(zip_file.getName()); 
        } 
        catch (Exception e) { 
            System.out.println(e.getMessage()); 
        } 
    } 
}

输出:

f:\file.zip

范例2:创建一个名为zip_file的文件,并使用getName()函数获取名称。 “file1.zip”是f:目录中不存在的zip文件。

// Java program to demonstrate the 
// use of getName() 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:\\file1.zip"); 
  
            // Display the name of the zip file 
            // using getName() function 
            System.out.println(zip_file.getName()); 
        } 
        catch (Exception e) { 
            System.out.println(e.getMessage()); 
        } 
    } 
}

输出:

f:\file1.zip (The system cannot find the file specified)

参考: https://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#getName()



相关用法


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