Instant類的toEpochMilli()方法用於將此瞬間轉換為從1970-01-01T00:00:00Z的紀元到long值的毫秒數。此方法返回該long值。
用法:
public long toEpochMilli()
返回值:此方法返回自1970-01-01T00:00:00Z的紀元以來的毫秒數。
異常:如果發生數字溢出,則此方法將引發ArithmeticException。
以下示例程序旨在說明Instant.toEpochMilli()方法:
示例1:
// Java program to demonstrate
// Instant.toEpochMilli() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-12-30T19:34:50.63Z");
// get milisecond value using toEpochMilli()
long value = instant.toEpochMilli();
// print result
System.out.println("Milisecond value: "
+ value);
}
}
輸出:
Milisecond value: 1546198490630
示例2:
// Java program to demonstrate
// Instant.toEpochMilli() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant = Instant.now();
// current Instant
System.out.println("Current Instant: "
+ instant);
// get milisecond value using toEpochMilli()
long value = instant.toEpochMilli();
// print result
System.out.println("Milisecond value: "
+ value);
}
}
輸出:
Current Instant: 2018-11-27T04:46:36.368Z Milisecond value: 1543293996368
參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#toEpochMilli()
相關用法
- Java Instant from()用法及代碼示例
- Java Instant get()用法及代碼示例
- Java Instant until()用法及代碼示例
- Java Instant plus()用法及代碼示例
- Java Instant now()用法及代碼示例
- Java Instant with()用法及代碼示例
- Java Instant plusNanos()用法及代碼示例
- Java Instant atOffset()用法及代碼示例
- Java 8 Clock instant()用法及代碼示例
- Java Instant getEpochSecond()用法及代碼示例
- Java Instant plusMillis()用法及代碼示例
- Java Instant getLong()用法及代碼示例
- Java Instant isBefore()用法及代碼示例
- Java Instant plusSeconds()用法及代碼示例
- Java Instant isAfter()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant toEpochMilli() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。