Java Date Time - ZonedDateTime now() example








ZonedDateTime now() Obtains the current date-time from the system clock in the default time-zone.

Syntax

now has the following syntax.

public static ZonedDateTime now()

Example

The following example shows how to use now.

import java.time.ZonedDateTime;
/*from ww w  .  j  av  a2  s  . com*/
public class Main {
  public static void main(String[] args) {
    ZonedDateTime z = ZonedDateTime.now();
    
    System.out.println(z);

  }
}

The code above generates the following result.