OffsetDateTime now() example
Description
OffsetDateTime now()
creates
the current date-time from the system clock in the default time-zone.
Syntax
now
has the following syntax.
public static OffsetDateTime now()
Example
The following example shows how to use now
.
import java.time.OffsetDateTime;
//from w ww .j a v a 2 s . c o m
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
System.out.println(o);
}
}
The code above generates the following result.