码迷,mamicode.com
首页 > 其他好文 > 详细

根据日期时间段获取各个月份

时间:2016-12-28 19:49:43      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:add   []   imp   cal   lis   time()   string   instance   format   

 private String[] getDateArrByMonth(Date startDate, Date endDate) {

  Calendar c = Calendar.getInstance();  

 List<String> list = new ArrayList<String>();  

 SimpleDateFormat df = new SimpleDateFormat("yyyy年MM月");

  for (; startDate.getTime() <= endDate.getTime();) {    

 String _startDate = df.format(startDate);   

   list.add(_startDate);    

 c.setTime(startDate);    

   c.add(Calendar.MONTH, 1);    //加一个月

   startDate = c.getTime();   

}

  String[] ret = new String[list.size()];   

  for (int i = 0; i < list.size(); i++) {    

  ret[i] = list.get(i);   

}

  return ret;  }

根据日期时间段获取各个月份

标签:add   []   imp   cal   lis   time()   string   instance   format   

原文地址:http://www.cnblogs.com/cuijinlong/p/6230264.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!