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()
相关用法
- Java ZipFile size()用法及代码示例
- Java ZipFile getInputStream()用法及代码示例
- Java ZipFile getComment()用法及代码示例
- Java ZipFile entries()用法及代码示例
- Java ZipFile getEntry()用法及代码示例
- Java ZipEntry getName()用法及代码示例
- Java Level getName()用法及代码示例
- Java Provider getName()用法及代码示例
- Java Field getName()用法及代码示例
- Java Class getName()用法及代码示例
- Java Constructor getName()用法及代码示例
- Java Logger getName()用法及代码示例
- Java Package getName()用法及代码示例
- Java Path getName(int)用法及代码示例
- Java File getName()用法及代码示例
注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 ZipFile getName() function in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。