OffsetDateTime now(Clock clock)
creates
the current date-time from the specified clock.
now
has the following syntax.
public static OffsetDateTime now(Clock clock)
The following example shows how to use now
.
import java.time.Clock; import java.time.OffsetDateTime; /* w w w. j a v a 2s . 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.