java.time.Instant.atOffset() 方法

描述

java.time.Instant.atOffset(ZoneOffset offset) 方法将此瞬间与偏移结合起来创建一个 OffsetDateTime。


声明

以下是 java.time.Instant.atOffset(ZoneOffset offset) 方法的声明。

public OffsetDateTime atOffset(ZoneOffset offset)

参数

offset − 要组合的偏移量,不为空。


返回值

从这一时刻和指定的偏移量形成的偏移日期时间,不为空。


异常

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


示例

下面的例子展示了 java.time.Instant.atOffset(ZoneOffset offset) 方法的使用。

package com.tutorialspoint;

import java.time.Instant;
import java.time.OffsetDateTime;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;

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

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      System.out.println(instant);  

      ZoneOffset offset = ZoneOffset.ofHours(5);

      OffsetDateTime  date = instant.atOffset(offset);
      System.out.println(date);  
   }
}

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

2017-02-03T10:37:30Z
2017-02-03T15:37:30+05:00