java.time.Instant.from(TemporalAccessor temporal)
方法從時態物件獲取Instant
的範例。
以下是java.time.Instant.from(TemporalAccessor temporal)
方法的宣告。
public static Instant from(TemporalAccessor temporal)
temporal
- 要轉換的時間物件,而不是null
。瞬間,不是null
。
DateTimeException
- 如果無法轉換為Instant
。以下範例顯示了java.time.Instant.from(TemporalAccessor temporal)
方法的用法。
package com.yiibai;
import java.time.Instant;
import java.time.ZonedDateTime;
public class InstantDemo {
public static void main(String[] args) {
ZonedDateTime zonedDateTime = ZonedDateTime.now();
Instant instant = Instant.from(zonedDateTime);
System.out.println(instant);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-03-10T09:29:03.044Z