Java Date Time - LocalDate now(ZoneId zone) example








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;
/*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.