La función getComment() es parte del paquete java.util.zip. La función devuelve una string que es el comentario del archivo zip.
Firma de función:
public String getComment()
Sintaxis:
zip_file.getComment();
Parámetros: la función no requiere ningún parámetro
. Valor de retorno: la función devuelve una string, que es el comentario del archivo zip.
Excepciones: la función lanza IllegalStateException si el archivo zip se ha cerrado
Los siguientes programas ilustran el uso de la función getComment()
Ejemplo 1: Cree un archivo llamado zip_file y obtenga el comentario usando la función getComment().”file.zip” es un archivo zip presente en el directorio f:.
// Java program to demonstrate the // use of getComment() 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 comment // of the zip file // using getComment() function System.out.println("comment = " + zip_file.getComment()); } catch (Exception e) { System.out.println(e.getMessage()); } } }
Producción:
comment = This is a zip file comment
Ejemplo 2: Cree un archivo llamado zip_file y obtenga el comentario usando la función getComment(). Esta función arroja una excepción si cerramos el archivo y luego llamamos a la función getComment().
// Java program to demonstrate the // use of getComment() 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"); // close the file zip_file.close(); // Display the comment // of the zip file // using getComment() function System.out.println("comment = " + zip_file.getComment()); } catch (Exception e) { System.out.println(e.getMessage()); } } }
Producción:
zip file closed
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipFile.html#getComment()
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA