Java中的 ZipFile getName()函数及示例
getName()函数是Java.util.zip 包的一部分。该函数返回 ZipFile 对象的路径名。
函数签名:
public String getName()
句法:
zip_file.getName();
参数:该函数不需要任何参数
返回值:函数返回一个字符串,即zip文件的路径名
异常:该函数不抛出任何异常。
下面的程序说明了 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: Java/util/zip/ZipFile.html#getName()