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