java.time.Instant.atOffset() 方法示例 java.time.Instant.adjustInto() 方法示例 java.time.Instant.atZone() 方法示例 java.time.Instant.atOffset() 方法示例 package com.codingdict; 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); } } java.time.Instant.adjustInto() 方法示例 java.time.Instant.atZone() 方法示例