public static void main(String[] args)
{ //月份加减
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM");
Calendar calendar=Calendar.getInstance();
calendar.setTime(new Date());
calendar.add(Calendar.MONTH,3);//日期加3个月
Date dt=calendar.getTime();
String reStr = sdf.format(dt);
System.out.println(reStr);
}
{ //月份加减
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM");
Calendar calendar=Calendar.getInstance();
calendar.setTime(new Date());
calendar.add(Calendar.MONTH,3);//日期加3个月
Date dt=calendar.getTime();
String reStr = sdf.format(dt);
System.out.println(reStr);
}