[date] 时间问题: 更新时间距离现在3个月

Posted fan3516

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[date] 时间问题: 更新时间距离现在3个月相关的知识,希望对你有一定的参考价值。

public static void main(String[] args) {
Date d1 = null;
try {
d1 = DateFormatUtil.StringToDate("2018-02-18 9:22:22");
} catch (ParseException e) {
e.printStackTrace();
}

Date d = new Date();
System.out.println(d1);
System.out.println(d);
//String date = d.toString();
System.out.println(d1.getTime());
System.out.println(d.getTime());
System.out.println(Math.abs(d.getTime()-d1.getTime()) > 24*60*60*1000*90);
}















以上是关于[date] 时间问题: 更新时间距离现在3个月的主要内容,如果未能解决你的问题,请参考以下文章

假设今天是3月1日,星期天,请算出13个月零6天后是星期几,距离现在多少秒?

审查超过 3 个月和最近 30 天内的脚本

3个月上班总结

比较2个时刻日期字串的时间差:距离现在的时间距离(不同时间格式)

如何为过去 3 个月的每个日期运行查询

如何从今天的日期获取下个月的日期并将其插入我的数据库中?