java.time.Instant.adjustInto() 方法示例


java.time.Instant.adjustInto() 方法示例

package com.codingdict;

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);  
   }
}