java.time.ZonedDateTime.ofInstant(Instant instant, ZoneId zone)方法

2019-10-16 22:34:07

java.time.ZonedDateTime.ofInstant(Instant instant, ZoneId zone)方法從Instant和區域ID獲取ZonedDateTime的範例。

宣告

以下是java.time.ZonedDateTime.ofInstant(Instant instant, ZoneId zone)方法的宣告。

public static ZonedDateTime ofInstant(Instant instant, ZoneId zone)

引數

  • instant - 建立日期時間的瞬間,而不是null
  • zone - 時區可以是偏移量,而不是null

返回值

本地日期,不為null

例外

  • DateTimeException - 如果結果超出支援的範圍。

範例

以下範例顯示了java.time.ZonedDateTime.ofInstant(Instant instant, ZoneId zone)方法的用法。

package com.yiibai;

import java.time.Instant;
import java.time.ZonedDateTime;
import java.time.ZoneId;

public class ZonedDateTimeDemo {
   public static void main(String[] args) {

      ZonedDateTime date = ZonedDateTime.ofInstant(Instant.now(), ZoneId.systemDefault() );
      System.out.println(date);  
   }
}

編譯並執行上面的程式,這將產生以下結果 -

2017-03-28T13:58:14.543+05:30[Asia/Calcutta]