Java运用时间戳对比两个时间的大小
发表时间: 2017-09-21 15:54:00 | 浏览次数:
在开发中,我们会常常要对比两个时间的大小,下面我们通过比较两个时间的时间戳来判断这两个时间的大小。
/*** * 比较两个时间 * @now Data 当前时间 * @validity Date 有效期 * @return 1:当前时间大于有效期;2:当前时间小于有效期 * */ public static int compareDate(Date now, Date validity) { if(validity != null){ try { if (now.getTime() > validity.getTime()) return 1; else if (now.getTime() < validity.getTime()) return 2; else return 0; } catch (Exception exception) { exception.printStackTrace(); } } return 0; }
上一篇:Java生成随机字符串
下一篇:Java获取昨天、当天、明天的某一个时间点