java.time.ZonedDateTime.ofInstant(LocalDateTime localDateTime,ZoneOffset offset,ZoneId zone)
方法從通過組合本地日期時間和偏移量形成的時刻獲得ZonedDateTime
的範例。
以下是java.time.ZonedDateTime.ofInstant(LocalDateTime localDateTime,ZoneOffset offset,ZoneId zone)
方法的宣告。
public static ZonedDateTime ofInstant(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone)
localDateTime
- 本地日期時間,不為null
。offset
- 區域偏移量,不為null
。zone
- 時區,可以是偏移量,而不是null
。分割區日期時間,不為null
。
以下範例顯示了java.time.ZonedDateTime.ofInstant(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.ofInstant(LocalDateTime.now(),ZoneOffset.UTC, ZoneId.systemDefault() );
System.out.println(date);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-03-28T19:30:59.269+05:30[Asia/Calcutta]