Instant atZone(ZoneId zone) example
Description
Instant atZone(ZoneId zone)
combines this instant with
a time-zone to create a ZonedDateTime.
Syntax
atZone
has the following syntax.
public ZonedDateTime atZone(ZoneId zone)
Example
The following example shows how to use atZone
.
import java.time.Instant;
import java.time.ZoneId;
/* ww w .j a v a2 s . co m*/
public class Main {
public static void main(String[] args) {
Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
System.out.println(instant.atZone(ZoneId.systemDefault()));
}
}
The code above generates the following result.