List of usage examples for java.time Instant until
@Override public long until(Temporal endExclusive, TemporalUnit unit)
From source file:Main.java
public static void main(String[] args) { Instant instant = Instant.parse("2014-12-03T10:15:30.00Z"); ZonedDateTime l = ZonedDateTime.now(); System.out.println(instant.until(l, ChronoUnit.DAYS)); }