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