java.time.ZonedDateTime.plusWeeks() 方法示例 java.time.ZonedDateTime.plusSeconds() 方法示例 java.time.ZonedDateTime.plusYears() 方法示例 java.time.ZonedDateTime.plusWeeks() 方法示例 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.plusWeeks(2)); } } java.time.ZonedDateTime.plusSeconds() 方法示例 java.time.ZonedDateTime.plusYears() 方法示例