查找日期是否比另一天早5天的有效方法是什么?比较之前,我是否需要先使用特定的SimpleDateFormat解析这两天?

最佳答案

days = (date2.getTime() - date1.getTime())/86400000L

09-05 09:16