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