当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.time.ZonedDateTime.ofInstant()用法及代码示例



描述

这个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- 本地日期时间,不为空。

  • offset- 区域偏移,不为空。

  • zone- 时区,可能是一个偏移量,不为空。

返回值

分区日期时间,不为空。

示例

下面的例子展示了 java.time.ZonedDateTime.ofInstant(LocalDateTime localDateTime, ZoneOffset offset, ZoneId zone) 方法的用法。

package com.tutorialspoint;

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]

相关用法


注:本文由纯净天空筛选整理自 java.time.ZonedDateTime.ofInstant() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。