La función setCreationTime() es parte del paquete java.util.zip. La función se utiliza para establecer la hora de creación de la entrada Zip. La función toma el objeto FileTime como parámetro.
El objeto FileTime, que representa la hora de creación de ZipEntry.
Firma de función:
public void setCreationTime(FileTime v)
Sintaxis:
zip_entry.setCreationTime(v);
Parámetros: La función toma como parámetro el objeto FileTime, el tiempo de creación del archivo.
Valor de retorno: la función no toma ningún parámetro
. Excepciones: la función arroja una excepción NullPointerException si el tiempo es nulo .
Los siguientes programas ilustran el uso de la función setCreationTime()
Ejemplo 1: Crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego estableceremos el CreationTime de la ZipEntry especificada. “file.zip” es un archivo zip presente en f: directorio. tomaremos un archivo “.zip” como ZipEntry
// Java program to demonstrate the // use of setCreationTime() function import java.util.zip.*; import java.util.Enumeration; import java.util.*; import java.io.*; import java.nio.file.attribute.*; 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 CreationTime // using the setCreationTime() // function entry.setCreationTime(FileTime.fromMillis(100000)); // Get the CreationTime // using the getCreationTime() // function FileTime input = entry.getCreationTime(); // Display the CreationTime System.out.println("CreationTime : " + input.toString()); } catch (Exception e) { System.out.println(e.getMessage()); } } }
CreationTime : 1970-01-01T00:01:40Z
Ejemplo 2: Crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego estableceremos el tiempo de creación de la ZipEntry especificada. “file.zip” es un archivo zip presente en el directorio f:. Estableceremos el valor del tiempo de creación en nulo. tomaremos un archivo “.cpp” como ZipEntry
// Java program to demonstrate the // use of getCreationTime() function import java.util.zip.*; import java.util.Enumeration; import java.util.*; import java.io.*; import java.nio.file.attribute.*; 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 CreationTime // using the setCreationTime() // function entry.setCreationTime(null); // Get the CreationTime // using the getCreationTime() // function FileTime input = entry.getCreationTime(); // Display the CreationTime System.out.println("CreationTime : " + input.toString()); } catch (Exception e) { System.out.println(e.getMessage()); } } }
CreationTime :
El programa finalizó debido a un error ya que se estableció un valor nulo
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA