java.time.ZonedDateTime.ofInstant() 方法

描述

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 − 创建日期时间的时刻,不为空。

  • zone − 时区,可能是偏移量,不为空。


返回值

本地日期,不为空。


异常

DateTimeException − 如果结果超出支持的范围。


示例

下面的例子展示了 java.time.ZonedDateTime.ofInstant(Instant instant, ZoneId zone) 方法的使用。

package com.tutorialspoint;

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]