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