LocalDateTime 為java8的新特性之一
LocalDateTime.now() 獲得當前時間
java.
time.Duration duration = java.time.Duration.between(LocalDateTime startTime, LocalDateTime end
Time );
例如: duration.toMinutes() //兩個時間差的分鍾數
toNanos()//納秒
toMillis()//毫秒
toMinutes()//分鍾
toHours()//小時
toDays()//天數
原文地址:https://blog.csdn.net/shaoyu_zhu_88/article/details/77148557
