Función Java ZipEntry getCreationTime() con ejemplos

La función getCreationTime() es parte del paquete java.util.zip. La función devuelve la hora de creación de un ZipEntry específico o nulo si no se especifica la hora de creación.
La función devuelve FileTime Object, que representa la hora de creación de ZipEntry.
Firma de función:

public FileTime getCreationTime()

Sintaxis:

zip_entry.getCreationTime();

Parámetros: No se requiere ningún parámetro para esta función.
Valor de retorno: la función devuelve el objeto FileTime, que representa la hora de creación de ZipEntry.
Excepciones: la función no arroja ninguna excepción.

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

Ejemplo 1: Crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego obtendremos el tiempo de creación 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 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");
  
            // 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());
        }
    }
}
Producción:

CreationTime : 2019-02-21T21:09:35.688822Z

Ejemplo 2: Crearemos un archivo llamado zip_file y obtendremos la entrada del archivo zip usando la función getEntry() y luego obtendremos el tiempo de creación 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 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("file1.cpp");
  
            // 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());
        }
    }
}
Producción:

CreationTime : 2018-12-07T13:11:25.357749Z

Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.html#getCreationTime–

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 *