java.time.ZonedDateTime.ofStrict(LocalDateTime localDateTime,ZoneOffset offset,ZoneId zone)
方法獲取ZonedDateTime
的範例,嚴格驗證本地日期時間,偏移量和區域ID的組合。
以下是java.time.ZonedDateTime.ofStrict(LocalDateTime localDateTime,ZoneOffset offset,ZoneId zone)
方法的宣告。
public static ZonedDateTime ofStrict(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone)
localDateTime
- 本地日期時間,不為null
。offset
- 區域偏移量,不為null
。zone
- 時區,不為null
。分割區日期時間,不為null
。
以下範例顯示了java.time.ZonedDateTime.ofStrict(LocalDateTime localDateTime,ZoneOffset offset,ZoneId zone)
方法的用法。
package com.yiibai;
import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
import java.time.ZoneId;
public class ZonedDateTimeDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.ofStrict(LocalDateTime.now(), ZoneOffset.UTC, ZoneId.of("Z"));
System.out.println(date);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-03-28T14:12:19.482Z