Java Date Time - LocalDateTime plusWeeks(long weeks) example








LocalDateTime plusWeeks(long weeks) returns a copy of this LocalDateTime with the specified period in weeks added.

Syntax

plusWeeks has the following syntax.

public LocalDateTime plusWeeks(long weeks)

Example

The following example shows how to use plusWeeks.

import java.time.LocalDateTime;
/*from   w  ww  . j ava  2 s .  c  o  m*/
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 00);
    
    LocalDateTime t = a.plusWeeks(100);
    
    System.out.println(t);
  }
}

The code above generates the following result.