Función Java ZipEntry getComment() con ejemplos

La función getComment() es parte del paquete java.util.zip. La función devuelve el comentario de un ZipEntry específico.
Firma de función:

public String getComment()

Sintaxis:

zip_entry.getComment();

Parámetros: No se requiere ningún parámetro para esta función.
Valor de retorno: la función devuelve el objeto String, el comentario de este ZipEntry.
Excepciones: la función no arroja ninguna excepción.

Los siguientes programas ilustran el uso de la función getComment()

Ejemplo 1: Crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego obtendremos el comentario de la ZipEntry especificada. “file.zip” es un archivo zip presente en el directorio f:.

// Java program to demonstrate the
// use of getComment() 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
            String input = entry.getComment();
  
            // Display the comment
            System.out.println("Comment : " + input);
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}
Producción:

Comment : This is a Zip Entry comment

Ejemplo 2: Crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego obtendremos el comentario de la ZipEntry especificada. “file.zip” es un archivo zip presente en el directorio f:.
Cuando no se establece ningún comentario.

// Java program to demonstrate the
// use of getComment() 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
            String input = entry.getComment();
  
            // Display the comment
            System.out.println("Comment : " + input);
        }
        catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
}
Producción:

Comment : null

Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/zip/ZipEntry.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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *