getTime()函数是java.util.zip软件包的一部分。该函数返回作为参数传递的特定ZipEntry的“上次修改时间”。该函数返回long值,该值表示ZipEntry的上次修改时间(文件的上次修改时间);如果未指定last Modified time,则返回-1。如果从ZIP文件或ZIP文件格式的输入流中读取了ZipEntry,则这是最后修改时间,否则将从条目的日期和时间字段中读取最后修改时间。函数签名:
public long getTime()
用法:
zip_entry.getTime();
参数:此函数不需要任何参数。
返回值:该函数返回long值,该值表示ZipEntry的最后修改时间。
Exceptions:该函数不会引发任何异常。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://docs.oracle.com/javase/8/docs/api/java/util/zip/ZipEntry.html#getTime-
相关用法
- Java SQL Timestamp getTime()用法及代码示例
- Java ZipEntry getSize()用法及代码示例
- Java ZipEntry setComment()用法及代码示例
- Java ZipEntry getComment()用法及代码示例
- Java ZipEntry getName()用法及代码示例
- Java ZipEntry getCompressedSize()用法及代码示例
- Java ZipEntry setLastAccessTime()用法及代码示例
- Java ZipEntry getMethod()用法及代码示例
- Java ZipEntry getCreationTime()用法及代码示例
- Java ZipEntry setLastModifiedTime()用法及代码示例
- Java ZipEntry getCrc()用法及代码示例
- Java ZipEntry setCompressedSize()用法及代码示例
- Java ZipEntry getLastAccessTime()用法及代码示例
- Java ZipEntry setCrc()用法及代码示例
- Java ZipEntry getLastModifiedTime()用法及代码示例
注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 Java ZipEntry getTime() function with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。