LocalDate now(ZoneId zone)
creates the current date from the system
clock in the specified time-zone.
now
has the following syntax.
public static LocalDate now(ZoneId zone)
The following example shows how to use now
.
import java.time.LocalDate; import java.time.ZoneId; /*from w w w .j a v a2 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.