我有一个如下所示的日期字符串:
String time1 = "2018-08-28T10:23:25.617Z";
我想获得该日期与UTC时间中的当前日期之间的差额。最简单的方法是什么?谢谢。
答案 0 :(得分:4)
您可以使用java.time.Instant
和java.time.Duration
:
Instant instant = Instant.parse("2018-08-28T10:23:25.617Z"); // start time in UTC
Instant now = Instant.now(); // end time in UTC
Duration duration = Duration.between(instant, now); // the Duration
System.out.println(duration.toSeconds()); // duration in seconds