📜  Java ZipEntry getCreationTime()函数及示例

📅  最后修改于: 2022-05-13 01:55:18.895000             🧑  作者: Mango

Java ZipEntry getCreationTime()函数及示例


getCreationTime()函数是Java.util.zip 包的一部分。该函数返回特定 ZipEntry 的创建时间,如果未指定创建时间,则返回 null。
该函数返回 FileTime 对象,它表示 ZipEntry 的创建时间。
函数签名:

public FileTime getCreationTime()

句法 :

zip_entry.getCreationTime();

参数:此函数不需要参数。
返回值:函数返回 FileTime 对象,表示 ZipEntry 的创建时间。
异常:该函数不会抛出任何异常。

下面的程序说明了 getCreationTime()函数的使用

示例 1:我们将创建一个名为 zip_file 的文件,并使用 getEntry()函数获取 zip 文件条目,然后获取指定 ZipEntry 的 CreationTime。“file.zip”是存在于 f: 目录中的 zip 文件。我们将使用“.zip”文件作为 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());
        }
    }
}
输出:
CreationTime : 2019-02-21T21:09:35.688822Z

示例 2:我们将创建一个名为 zip_file 的文件,并使用 getEntry()函数获取 zip 文件条目,然后获取指定 ZipEntry 的 CreationTime。“file.zip”是存在于 f: 目录中的 zip 文件。我们将使用“.cpp”文件作为 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());
        }
    }
}
输出:
CreationTime : 2018-12-07T13:11:25.357749Z

参考: https: Java/util/zip/ZipEntry.html#getCreationTime–