JAVA
MyosotisViolet
这个作者很懒,什么都没留下…
展开
-
判断两个时间差(Date)
一个每天只能进行一次的操作,需要比较时间,但这里的比较时间只比较天数,因为 是每天进行一次,所以不需要比较小时、分、秒1.对比时间(天数)Calendar aCalendar = Calendar.getInstance();//获取要对比的时间aCalendar.setTime(createTime);//转换为int类型以做比较int day1 = aCalend原创 2015-06-17 14:06:37 · 1845 阅读 · 0 评论 -
JAVA 比较两个日期相差的天数
在测试工作中经常会使用到比较两个日期相差的天数,我之前用过实现这一功能的两个版本的方法,源代码如下:(版本1)publicstaticint getIntervalDays(Date fDate, Date oDate) { if (null == fDate || null == oDate) { return -1;转载 2015-06-17 14:01:59 · 463 阅读 · 0 评论