List of usage examples for java.time LocalDateTime plusWeeks
public LocalDateTime plusWeeks(long weeks)
From source file:Main.java
public static void main(String[] args) { LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 00); LocalDateTime t = a.plusWeeks(100); System.out.println(t);//from www . j av a2 s . com }