java运用Calendar循环增加一个月获取响应的时间

public static void main(String[] args) {                   

             Calendar theCa = new GregorianCalendar();

            SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

            Date d=format.parse("2017-12-27 11:44:50");

           theCa.setTime(d);

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

           String currentDate=dft.format(theCa.getTime());

          Calendar calendar = Calendar.getInstance();

          calendar.setTime(theCa.getTime());

         calendar.set(Calendar.DAY_OF_MONTH,        calendar.getActualMaximum(Calendar.DAY_OF_MONTH));

        String maxDate=dft.format(calendar.getTime());

for(int i=1;i<=6;i++){

        if(maxDate.equals(currentDate)){//如果是最后一天,则需要是每个月的最后一天

                 theCa.add(Calendar.MONTH, 1);

                  Date   lastDate   =   theCa.getTime();  //只有在getTime之后,新增的时间才有效,所以先获取一下在设置

                 int   lastDay   =   theCa.getActualMaximum(Calendar.DAY_OF_MONTH);  

                theCa.set(Calendar.DATE, lastDay);

        }else{

                  theCa.add(Calendar.MONTH, 1);

                  if(theCa.get(Calendar.MONTH)>1){//在2月之后

                       Calendar cd=Calendar.getInstance();

                       cd.setTime(d);

                        int dateT=cd.get(Calendar.DATE);

                          theCa.set(Calendar.DATE, dateT);

                    }

        }

                 System.out.println(format.format(theCa.getTime()));

       }

 

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值