La función getName() es parte del paquete java.util.zip. La función devuelve el nombre de la ruta del objeto ZipFile.
Firma de función:
public String getName()
Sintaxis:
zip_file.getName();
Parámetros: la función no requiere ningún parámetro
. Valor de retorno: la función devuelve una string, que es el nombre de la ruta del archivo zip.
Excepciones: la función no arroja ninguna excepción.
Los siguientes programas ilustran el uso de la función getName()
Ejemplo 1: Cree un archivo llamado zip_file y obtenga el nombre usando la función getName(). “file.zip” es un archivo zip presente en el directorio 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()); } } }
Producción:
f:\file.zip
Ejemplo 2: Cree un archivo llamado zip_file y obtenga el nombre usando la función getName(). “file1.zip” es un archivo zip inexistente en el directorio 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()); } } }
Producción:
f:\file1.zip (The system cannot find the file specified)
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#getName()
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA