java当前日期加一个月_用代码实现使当前日期 Date型的数据增加一个月

展开全部

Calendar cal = Calendar.getInstance();

//下面的就是把当前日期加一个月

cal.add(Calendar.MONTH, 1)

SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");

System.out.println("today is:" + format.format(Calendar.getInstance().getTime()));

System.out.println("yesterday is:" + format.format(cal.getTime()));

java当前日期加一个月_用代码实现使当前日期 Date型的数据增加一个月_第1张图片

扩展资料

以当前日期new Date()为例。也可以将例中new Date()换成任e69da5e887aa3231313335323631343130323136353331333366306530意Date对象)

1,获取今天的0时0分0秒(常用于开始日期的获取)

var startDate= new Date(new Date().toLocaleDateString()); //Tue May 15 2018 00:00:00 GMT+0800 (中国标准时间)

2,获取一个月前的日期

var lastM =new Date(new Date().setMonth(new Date().getMonth()-1));//Sun Apr 15 2018 09:18:08 GMT+0800 (中国标准时间)

3,获取前一天的日期

var yesterday = new Date(new Date().setDate(new Date().getDate()-1));//Mon May 14 2018 09:26:39 GMT+0800 (中国标准时间)

你可能感兴趣的:(java当前日期加一个月)