La función setCompressedSize() es parte del paquete java.util.zip. La función establece el tamaño comprimido de Zip Entry en un valor largo especificado.
Firma de función:
public void setCompressedSize(long val)
Sintaxis:
zip_entry.setCompressedSize(val);
Parámetros: La función toma un valor largo 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 setCompressedSize()
Ejemplo 1: crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego estableceremos el tamaño comprimido 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 setCompressedSize() 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"); // set the CompressedSize // using the getCompressedSize() // function entry.setCompressedSize(123); // Get the CompressedSize // using the getCompressedSize() // function long input = entry.getCompressedSize(); // Display the CompressedSize System.out.println("CompressedSize : " + input); } catch (Exception e) { System.out.println(e.getMessage()); } } }
CompressedSize : 123
Ejemplo 2: Crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego estableceremos el CompressedSize 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 setCompressedSize() 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"); // set the CompressedSize // using the getCompressedSize() // function entry.setCompressedSize(123); // Get the CompressedSize // using the getCompressedSize() // function long input = entry.getCompressedSize(); // Display the CompressedSize System.out.println("CompressedSize : " + input); } catch (Exception e) { System.out.println(e.getMessage()); } } }
CompressedSize : 123
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.html#setCompressedSize-long-
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA