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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。