摘要: 相差天数计算: /** * 相差天数计算 */ public int differentDaysByMillisecond(Date date1, Date date2) { return Math.abs((int) ((date2.getTime() - date1.getTime()) / ( 阅读全文
posted @ 2022-05-26 20:13 天天代码码天天 阅读(602) 评论(0) 推荐(0)