Java Date Time - OffsetDateTime minusSeconds(long seconds) example








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

Syntax

minusSeconds has the following syntax.

public OffsetDateTime minusSeconds(long seconds)

Example

The following example shows how to use minusSeconds.

import java.time.OffsetDateTime;

public class Main {
  public static void main(String[] args) {
    OffsetDateTime o = OffsetDateTime.now();
    OffsetDateTime d =  o.minusSeconds(1200);
    System.out.println(d);
  }
}

The code above generates the following result.