ZonedDateTime now(ZoneId zone) example
Description
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;
/*w w w. j a v a 2s .c o 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.