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