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