La función setComment() es parte del paquete java.util.zip. La función establece el comentario de un ZipEntry específico en la string especificada.
La longitud máxima del comentario es 0xffff, si la longitud de la string es mayor que 0xffff, se considerarán los primeros caracteres 0xffff.
Firma de función:
public void setComment(String s)
Sintaxis:
zip_entry.setComment(s);
Parámetros: la función acepta un objeto String como parámetro.
Valor devuelto : la función no devuelve ningún valor.
Excepciones: la función no arroja ninguna excepción.
Los siguientes programas ilustran el uso de la función setComment()
Ejemplo 1: Crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego estableceremos el comentario de la ZipEntry especificada. “file.zip” es un archivo zip presente en el directorio f:.
// Java program to demonstrate the // use of setComment() 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 Comment // using the getComment() // function entry.setComment("This is a ZipEntry comment"); // get the Comment // using the getComment() // function String input = entry.getComment(); // Display the comment System.out.println("Comment : " + input); } catch (Exception e) { System.out.println(e.getMessage()); } } }
Comment : This is a Zip Entry comment)
Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/zip/ZipEntry.html#setComment-java.lang.String-
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA