Instant類的ofEpochMilli()方法使用從1970-01-01T00:00:00Z的紀元作為參數傳遞的毫秒數來幫助獲取Instant。返回的毫秒數用於通過轉換獲取不同的時間單位,例如秒等。
用法:
public static Instant ofEpochMilli(long epochMilli)
參數:此方法接受一個參數epochMilli是從1970-01-01T00:00:00Z開始的毫秒值。
返回值:此方法返回從紀元開始的時間(以毫秒為單位)。
異常:如果結果超過最大或最小瞬間,則此方法將引發DateTimeException。
以下示例程序旨在說明ofEpochMilli()方法:
示例1:
// Java program to demonstrate
// Instant.ofEpochMilli() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a long variable for milliseconds
long milliseconds
= 999999000;
// get Instant using ofEpochMilli() method
Instant instant
= Instant.ofEpochMilli(milliseconds);
// print result
System.out.println("Instant: "
+ instant);
}
}
輸出:
Instant: 1970-01-12T13:46:39Z
示例2:
// Java program to demonstrate
// Instant.ofEpochMilli() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// get Instant using ofEpochMilli() method
// passed epoch millisecond is 73264271044L
Instant instant
= Instant.ofEpochMilli(73264271044L);
// print result
System.out.println("Instant: "
+ instant);
}
}
輸出:
Instant: 1972-04-27T23:11:11.044Z
參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#ofEpochMilli(long)
相關用法
- Java Instant from()用法及代碼示例
- Java Instant with()用法及代碼示例
- Java Instant now()用法及代碼示例
- Java Instant get()用法及代碼示例
- Java Instant plus()用法及代碼示例
- Java Instant until()用法及代碼示例
- Java Instant isBefore()用法及代碼示例
- Java Instant toEpochMilli()用法及代碼示例
- Java Instant getEpochSecond()用法及代碼示例
- Java Instant minus()用法及代碼示例
- Java Instant truncatedTo()用法及代碼示例
- Java Instant isAfter()用法及代碼示例
- Java Instant minusMillis()用法及代碼示例
- Java 8 Clock instant()用法及代碼示例
- Java Instant plusNanos()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant ofEpochMilli() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。