ZonedDateTime getZone() example
Description
ZonedDateTime getZone()
gets the time-zone, such as 'Europe/Paris'.
Syntax
getZone
has the following syntax.
public ZoneId getZone()
Example
The following example shows how to use getZone
.
import java.time.ZonedDateTime;
//from w w w. ja v a 2 s.com
public class Main {
public static void main(String[] args) {
ZonedDateTime dateTime =ZonedDateTime.now();
System.out.println(dateTime.getZone());
}
}
The code above generates the following result.