日期增减

复制代码
 public static List<String> calTimeFormat() {
        int i =0;
        Calendar ca = Calendar.getInstance();//得到一个Calendar的实例
        List<String> timeList = new ArrayList<>();
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        while (i>=-6){
            ca.setTime(new Date()); //设置时间为当前时间
            ca.add(Calendar.DATE, i);
            String format = sdf.format( ca.getTime());
            timeList.add(format);
            i--;
        }
        return timeList;
    }
复制代码

 

posted @   二先森  阅读(120)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示