Java Date Time - LocalDateTime minusDays(long days) example








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

Syntax

minusDays has the following syntax.

public LocalDateTime minusDays(long days)

Example

The following example shows how to use minusDays.

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

The code above generates the following result.