List of usage examples for java.time ZonedDateTime plusWeeks
public ZonedDateTime plusWeeks(long weeks)
From source file:Main.java
public static void main(String[] args) { ZonedDateTime dateTime = ZonedDateTime.now(); ZonedDateTime n = dateTime.plusWeeks(1234); System.out.println(n);/*www. j av a 2 s. c o m*/ }