Java Date Time - LocalDateTime minusSeconds(long seconds) example








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

Syntax

minusSeconds has the following syntax.

public LocalDateTime minusSeconds(long seconds)

Example

The following example shows how to use minusSeconds.

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

The code above generates the following result.