Java Date Time - LocalDateTime plusSeconds(long seconds) example








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

Syntax

plusSeconds has the following syntax.

public LocalDateTime plusSeconds(long seconds)

Example

The following example shows how to use plusSeconds.

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

The code above generates the following result.