java.time.LocalDateTime.ofEpochSecond(long epochSecond,int nanoOfSecond,ZoneOffset offset)
方法使用1970-01-01T00:00:00Z
的紀元中的秒獲得LocalDateTime
的範例。
以下是java.time.LocalDateTime.ofEpochSecond(long epochSecond,int nanoOfSecond,ZoneOffset offset)
方法的宣告。
public static LocalDateTime ofEpochSecond(long epochSecond, int nanoOfSecond, ZoneOffset offset)
epochSecond
- 從1970-01-01T00:00:00Z
時代以來的秒數nanoOfSecond
- 納秒,從0
到999,999,999
offset
- 區域偏移量,不為null
本地日期時間,不為null
。
DateTimeException
- 如果結果超出支援的範圍,或者納秒級無效。以下範例顯示了java.time.LocalDateTime.ofEpochSecond(long epochSecond,int nanoOfSecond,ZoneOffset offset)
方法的用法。
package com.yiibai;
import java.time.LocalDateTime;
import java.time.ZoneOffset;
public class LocalDateTimeDemo {
public static void main(String[] args) {
LocalDateTime date = LocalDateTime.ofEpochSecond(50000,50000,ZoneOffset.UTC);
System.out.println(date);
}
}
編譯並執行上面的程式,這將產生以下結果 -
1970-01-01T13:53:20.000050