Java Date Time - LocalDateTime now() example








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

Syntax

now has the following syntax.

public static LocalDateTime now()

Example

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.