java.time.Instant.ofEpochMilli(long epochMilli)
方法使用1970-01-01T00:00:00Z
的紀元中的毫秒來獲取Instant
的範例。
以下是java.time.Instant.ofEpochMilli(long epochMilli)
方法的宣告。
public static Instant ofEpochMilli(long epochMilli)
epochMilli
- 從1970-01-01T00:00:00Z
開始的毫秒數。瞬間,不是null
。
DateTimeException
- 如果瞬間超過最大或最小瞬間。以下範例顯示了java.time.Instant.ofEpochMilli(long epochMilli)
方法的用法。
package com.yiibai;
import java.time.Instant;
public class InstantDemo {
public static void main(String[] args) {
Instant instant = Instant.ofEpochMilli(10000);
System.out.println(instant);
}
}
編譯並執行上面的程式,這將產生以下結果 -
1970-01-01T00:00:10Z