java.time.ZonedDateTime.of(LocalDateTime date,ZoneId zone)
方法從日期時間和時區獲取ZonedDateTime
的範例。
以下是java.time.ZonedDateTime.of(LocalDateTime date,ZoneId zone)
方法的宣告。
public static ZonedDateTime of(LocalDateTime date, ZoneId zone)
date
- 本地日期時間,不為null
zone
- 時區,不為null
分割區日期時間,不為null
。
以下範例顯示了java.time.ZonedDateTime.of(LocalDateTime date,ZoneId zone)
方法的用法。
package com.yiibai;
import java.time.LocalDateTime;
import java.time.ZonedDateTime;
import java.time.ZoneId;
public class ZonedDateTimeDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.of(LocalDateTime.now(), ZoneId.systemDefault());
System.out.println(date);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-03-28T13:57:45.878+05:30[Asia/Calcutta]