java.time.Instant.getEpochSecond()
方法獲取1970-01-01T00:00:00Z
的Java紀元的秒數。
以下是java.time.Instant.getEpochSecond()
方法的宣告。
public long getEpochSecond()
1970-01-01T00:00:00Z
時代的秒數。
以下範例顯示了java.time.Instant.getEpochSecond()
方法的用法。
package com.yiibai;
import java.time.Instant;
public class InstantDemo {
public static void main(String[] args) {
Instant instant = Instant.parse("2017-03-03T10:37:30.00Z");
System.out.println(instant.getEpochSecond());
}
}
編譯並執行上面的程式,這將產生以下結果 -
1488537450