OffsetDateTime plusSeconds(long seconds) example
Description
OffsetDateTime plusSeconds(long seconds)
returns a copy of this OffsetDateTime with the specified period in seconds added.
Syntax
plusSeconds
has the following syntax.
public OffsetDateTime plusSeconds(long seconds)
Example
The following example shows how to use plusSeconds
.
import java.time.OffsetDateTime;
//w w w .jav a 2s.co m
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
OffsetDateTime d = o.plusSeconds(20);
System.out.println(d);
}
}
The code above generates the following result.