Java Date Time - LocalDate now() example








LocalDate now() gets the current date from the system clock in the default time-zone.

Syntax

now has the following syntax.

public static LocalDate now()

Example

The following example shows how to use now.

import java.time.LocalDate;

public class Main {
  public static void main(String[] args) {
    LocalDate a = LocalDate.now();
    
    System.out.println(a);
  }
}

The code above generates the following result.