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)