OffsetDateTime minusDays(long days) example
Description
OffsetDateTime minusDays(long days)
returns a copy of this OffsetDateTime with the specified
period in days subtracted.
Syntax
minusDays
has the following syntax.
public OffsetDateTime minusDays(long days)
Example
The following example shows how to use minusDays
.
import java.time.OffsetDateTime;
/*from ww w . j a va2s . c o m*/
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
OffsetDateTime d = o.minusDays(120);
System.out.println(d);
}
}
The code above generates the following result.