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


Java java.time.Instant.atZone()用法及代码示例



描述

这个java.time.Instant.atZone(ZoneId zone)方法将这个时刻与时区结合起来创建一个 ZonedDateTime。

声明

以下是声明java.time.Instant.atZone(ZoneId zone)方法。

public ZonedDateTime atZone(ZoneId zone)

参数

zone- 要结合的区域,不为空。

返回值

从该时刻和指定区域形成的分区日期时间,不为空。

异常

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

示例

下面的例子展示了 java.time.Instant.atZone(ZoneId zone) 方法的用法。

package com.tutorialspoint;

import java.time.Instant;
import java.time.OffsetDateTime;
import java.time.ZoneId;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
import java.util.Set;

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

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      System.out.println(instant);  
      
      Set<String> zones = ZoneId.getAvailableZoneIds();
      
      ZoneId zone = ZoneId.of(zones.iterator().next());
      
      ZonedDateTime  date = instant.atZone(zone);
      System.out.println(date);  
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

2017-02-03T10:37:30Z
2017-02-03T13:37:30+03:00[Asia/Aden]

相关用法


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