#方法一
Date1.after(Date2),当Date1大于Date2时,返回TRUE,当小于等于时,返回false;
Date1.before(Date2),当Date1小于Date2时,返回TRUE,当大于等于时,返回false;
#方法二
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date d1 = df.parse("2004-03-26 13:31:40");
Date d2 = df.parse("2004-01-02 11:30:24");
long diff = d1.getTime() - d2.getTime();
long days = diff / (1000 * 60 * 60 * 24);
相关文章
- 10-11String 时间类型怎么进行比较大小?
- 10-11webservice时间类型XMLGregorianCalendar和Date的转换
- 10-11BigDecimal 类型数据比较大小
- 10-11时间类型比较大小
- 10-11lambda 表达式 比较时间大小
- 10-11比较两个日期时间大小
- 10-11rabbitmq template发送的消息中,Date类型字段比当前时间晚了8小时
- 10-11rabbitmq template发送的消息中,Date类型字段比当前时间晚8小时
- 10-11SpringBoot升级到2.0后默认时间格式变化_springboot接收date类型参数
- 10-11比较两个时间大小的三种方法