当前位置: 代码迷 >> Java Web开发 >> new Date(System.currentTimeMillis()),该如何解决
  详细解决方案

new Date(System.currentTimeMillis()),该如何解决

热度:297   发布时间:2016-04-17 10:19:32.0
new Date(System.currentTimeMillis())
想要根据当前日期+30,设置成下个月的日期,我该怎么设置。

------解决方案--------------------
用Calendar cal=Calendar.getInstance();
cal.add(Calendar.Month, 1);
------解决方案--------------------
用Calendar吧,可以直接用:add(Calendar.DAY_OF_YEAR, 30);

如果非要用new Date(System.currentTimeMillis()),就是:
new Date(System.currentTimeMillis() + 30*24*60*60*1000)

30天×24小时×60分钟×60秒×1000毫秒
------解决方案--------------------
探讨

用Calendar吧,可以直接用:add(Calendar.DAY_OF_YEAR, 30);

如果非要用new Date(System.currentTimeMillis()),就是:
new Date(System.currentTimeMillis() + 30*24*60*60*1000)

30天×24小时×60分钟×60秒×1000毫秒
  相关解决方案