Java Date Time - LocalDateTime minusWeeks(long weeks) example








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

Syntax

minusWeeks has the following syntax.

public LocalDateTime minusWeeks(long weeks)

Example

The following example shows how to use minusWeeks.

import java.time.LocalDateTime;
//from   w  ww .java 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.minusWeeks(100);
    
    System.out.println(t);
  }
}

The code above generates the following result.