Instant atZone(ZoneId zone)
combines this instant with
a time-zone to create a ZonedDateTime.
atZone
has the following syntax.
public ZonedDateTime atZone(ZoneId zone)
The following example shows how to use atZone
.
import java.time.Instant; import java.time.ZoneId; //from ww w.jav a 2 s .com 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.