Java Date Time - ZonedDateTime now(ZoneId zone) example








ZonedDateTime now(ZoneId zone) creates the current date-time from the system clock in the specified time-zone.

Syntax

now has the following syntax.

public static ZonedDateTime now(ZoneId zone)

Example

The following example shows how to use now.

import java.time.ZoneId;
import java.time.ZonedDateTime;
//from www. j a  v a 2 s  . co m
public class Main {
  public static void main(String[] args) {
    ZonedDateTime z = ZonedDateTime.now(ZoneId.systemDefault());
    
    System.out.println(z);

  }
}

The code above generates the following result.