java.time.ZonedDateTime.getZone() 方法示例 java.time.ZonedDateTime.getYear() 方法示例 java.time.ZonedDateTime.hashCode() 方法示例 java.time.ZonedDateTime.getZone() 方法示例 package com.codingdict; import java.time.ZonedDateTime; public class ZonedDateTimeDemo { public static void main(String[] args) { ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]"); System.out.println(date.getZone()); } } java.time.ZonedDateTime.getYear() 方法示例 java.time.ZonedDateTime.hashCode() 方法示例