Java ZipFile getName()函数及示例
getName() 函数是 java.util.zip 包的一部分。该函数返回 ZipFile 对象的路径名称。
函数签名
public String getName()
语法
zip_file.getName();
参数: 该函数不需要任何参数
返回值: 该函数返回一个字符串,即压缩文件的路径名称
异常: 该函数不产生任何异常。
下面的程序说明了getName()函数的用法
例1: 创建一个名为zip_file的文件,并使用getName()函数获得其名称。”file.zip “是一个存在于f:目录下的压缩文件。
// 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 “是一个不存在的zip文件,在f: 目录下。
// 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()