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