Java ZipEntry getTime()函数及示例
getTime()函数是Java.util.zip 包的一部分。该函数返回作为参数传递的特定 ZipEntry 的上次修改时间。
该函数返回 long 值,表示 ZipEntry 的 Last Modified 时间(文件最后一次修改的时间),如果未指定 last Modified 时间,则返回 -1。
如果 ZipEntry 是从 ZIP 文件或 ZIP 文件格式的输入流中读取的,那么这是最后修改时间,否则最后修改时间是从条目的日期和时间字段中读取的。
函数签名:
public long getTime()
句法 :
zip_entry.getTime();
参数:此函数不需要参数。
返回值:函数返回长值,表示 ZipEntry 的 Last Modified 时间。
异常:该函数不会抛出任何异常。0
下面的程序说明了 getTime()函数的使用
示例 1:我们将创建一个名为 zip_file 的文件,并使用 getEntry()函数获取 zip 文件条目,然后获取指定 ZipEntry 的 LastModifiedTime。“file.zip”是存在于 f: 目录中的 zip 文件。我们将使用“.zip”文件作为 ZipEntry
// Java program to demonstrate the
// use of getTime() 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 LastModifiedTime
// using the getTime()
// function
long input = entry.getTime();
// Display the LastModifiedTime
System.out.println("LastModifiedTime : " + input);
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
LastModifiedTime : 1551033735858
示例 2:我们将创建一个名为 zip_file 的文件,并使用 getEntry()函数获取 zip 文件条目,然后获取指定 ZipEntry 的 LastModifiedTime。“file.zip”是存在于 f: 目录中的 zip 文件。我们将使用“.cpp”文件作为 ZipEntry
// Java program to demonstrate the
// use of getTime() 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 LastModifiedTime
// using the getTime()
// function
long input = entry.getTime();
// Display the LastModifiedTime
System.out.println("LastModifiedTime : " + input);
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
LastModifiedTime : 1544189602654
参考: https: Java/util/zip/ZipEntry.html#getTime–