ZonedDateTime now(ZoneId zone)
creates the current date-time from the system clock in the specified time-zone.
now
has the following syntax.
public static ZonedDateTime now(ZoneId zone)
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.