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 - 要从其创建日期时间且不为 null 的 instant。

  • zone - 时区,可以是偏移量,不为 null。

返回值

当地日期,不为 null。

异常

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]
广告