JAVA输出选定时间一个月所有天,每天是星期几

 存于世,必要拯救世界,希望的灯光也需要积累。
记之已身,学以致用,欢迎转载,更多联系QQ:289325414

public static List> getWeekDayInMonth(String date)
	{
		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
		List> resultList = new ArrayList<>();
		String[] weeks = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
		Calendar calendar = Calendar.getInstance();
		try
		{
			calendar.setTime(sdf.parse(date));
		}
		catch (Exception e)
		{
			e.printStackTrace();
		}
		int days = calendar.getActualMaximum(Calendar.DAY_OF_MONTH);
		int weekday = calendar.get(Calendar.DAY_OF_WEEK) - 1;// 1是星期日
		String cWeekDay = weeks[weekday];
		Map fristDate = new HashMap<>();
		fristDate.put("code", weekday + "");
		fristDate.put("weekday", cWeekDay);
		fristDate.put("date", sdf.format(calendar.getTime()));
		resultList.add(fristDate);
		for (int i = 1; i < days; i++)
		{
			calendar.add(calendar.DATE, 1);
			int weekday2 = calendar.get(Calendar.DAY_OF_WEEK) - 1;// 1是星期日
			String cWeekDay2 = weeks[weekday2];
			Map map = new HashMap<>();
			map.put("code", weekday2 + "");
			map.put("weekday", cWeekDay2);
			map.put("date", sdf.format(calendar.getTime()));
			resultList.add(map);
		}
		return resultList;
	}

 

public static void main(String[] args) {
		try {
		List> list=getWeekDayInMonth("2019-07-01");
			for(Map li:list){
				System.out.println(li);
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

 JAVA输出选定时间一个月所有天,每天是星期几_第1张图片

你可能感兴趣的:(后端)