|
@@ -281,6 +281,33 @@ public class DateUtil {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ * 判断给定时间与当前时间相差多少小时
|
|
|
+ *
|
|
|
+ * @param date
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public static long getDistanceMills(String date, Date now) {
|
|
|
+ DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
|
|
|
+ DateTime dateTime = DateTime.parse(date, format);
|
|
|
+
|
|
|
+ long mills = 0;
|
|
|
+ try {
|
|
|
+
|
|
|
+ Date time = dateTime.toDate();
|
|
|
+
|
|
|
+ long time1 = time.getTime();
|
|
|
+ long time2 = now.getTime();
|
|
|
+ long diff = time1 - time2;
|
|
|
+ mills = diff;
|
|
|
+
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+
|
|
|
+ return mills;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
* 得到几天前的时间
|
|
|
*/
|
|
|
|