java.time.ZonedDateTime.getNano() 方法示例 java.time.ZonedDateTime.getMonthValue() 方法示例 java.time.ZonedDateTime.getOffset() 方法示例 java.time.ZonedDateTime.getNano() 方法示例 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.getNano()); } } java.time.ZonedDateTime.getMonthValue() 方法示例 java.time.ZonedDateTime.getOffset() 方法示例