La función getName() es parte del paquete java.util.zip. La función devuelve el Nombre de un ZipEntry específico pasado como parámetro.
Firma de función:
public int getName()
Sintaxis:
zip_entry.getName();
Parámetros: No se requiere ningún parámetro para esta función.
Valor de retorno: la función devuelve un valor de string, el nombre de este ZipEntry.
Excepciones: la función no arroja ninguna excepción.
Los siguientes programas ilustran el uso de la función getName()
Ejemplo 1: crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego obtendremos el nombre de la ZipEntry especificada. “file.zip” es un archivo zip presente en el directorio f:. tomaremos un archivo “.zip” como ZipEntry
// Java program to demonstrate the // use of getName() function import java.util.zip.*; import java.util.Enumeration; import java.util.*; import java.io.*; public class solution { public static void main(String args[]) { try { // Create a Zip File ZipFile zip_file = new ZipFile("f:\\file1.zip"); // get the Zip Entry using // the getEntry() function ZipEntry entry = zip_file.getEntry("file.zip"); // Get the Name // using the getName() // function int input = entry.getName(); // Display the Name System.out.println(" Name : " + input); } catch (Exception e) { System.out.println(e.getMessage()); } } }
Producción:
Name : file.zip
Ejemplo 2: crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego obtendremos el nombre de la ZipEntry especificada. “file.zip” es un archivo zip presente en el directorio f:. tomaremos un archivo “.cpp” como ZipEntry
// Java program to demonstrate the // use of getName() function import java.util.zip.*; import java.util.Enumeration; import java.util.*; import java.io.*; public class solution { public static void main(String args[]) { try { // Create a Zip File ZipFile zip_file = new ZipFile("f:\\file1.zip"); // get the Zip Entry using // the getEntry() function ZipEntry entry = zip_file.getEntry("file1.cpp"); // Get the Name // using the getName() // function String input = entry.getName(); // Display the Name System.out.println(" Name : " + input); } catch (Exception e) { System.out.println(e.getMessage()); } } }
Producción:
Name : file1.cpp
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.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