描述 (Description)

java.time.Instant.adjustInto(Temporal temporal)方法调整指定的时态对象以获得此瞬间。

声明 (Declaration)

以下是java.time.Instant.adjustInto(Temporal temporal)方法的声明。

public Temporal adjustInto(Temporal temporal)

参数 (Parameters)

temporal - 要调整的目标对象,而不是null。

返回值 (Return Value)

调整后的对象,不为空。

异常 (Exceptions)

  • DateTimeException - 如果无法进行调整。

  • ArithmeticException - 如果发生数字溢出。

例子 (Example)

以下示例显示了java.time.Instant.adjustInto(Temporal temporal)方法的用法。

package com.wenjiangs;
import java.time.Instant;
import java.time.ZonedDateTime;
public class InstantDemo {
   public static void main(String[] args) {
      ZonedDateTime date = ZonedDateTime.now();
      System.out.println(date);  
      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      date = (ZonedDateTime)instant.adjustInto(date);
      System.out.println(date);  
   }
}

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

2017-03-10T11:10:35.454+05:30[Asia/Calcutta]
2017-02-03T16:07:30+05:30[Asia/Calcutta]