Java tutorial
import java.time.Instant; import java.time.ZonedDateTime; import java.time.temporal.Temporal; public class Main { public static void main(String[] args) { Instant instant = Instant.parse("2014-12-03T10:15:30.00Z"); ZonedDateTime l = ZonedDateTime.now(); Temporal t = instant.adjustInto(l); System.out.println((ZonedDateTime) t); } }