获取两个时间之间的所有月份

版权声明:本文为博主原创文章,未经博主允许不得转载,如果转载,我也不是很介意。 https://blog.csdn.net/qq_34926773/article/details/80008204
//获取两个时间之间的所有月份
	private List<String> getMonthBetween(String minDate, String maxDate){
	    ArrayList<String> result = new ArrayList<String>();
	    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");//格式化为年月

	    Calendar min = Calendar.getInstance();
	    Calendar max = Calendar.getInstance();
	    try {
		    min.setTime(sdf.parse(minDate));
		    min.set(min.get(Calendar.YEAR), min.get(Calendar.MONTH), 1);

		    max.setTime(sdf.parse(maxDate));
		    max.set(max.get(Calendar.YEAR), max.get(Calendar.MONTH), 2);
		} catch (ParseException e) {
		    e.printStackTrace();
	    }
	    Calendar curr = min;
	    while (curr.before(max)) {
	    result.add(sdf.format(curr.getTime()));
	    curr.add(Calendar.MONTH, 1);
	    }
	    return result;
	}

猜你喜欢

转载自blog.csdn.net/qq_34926773/article/details/80008204