1. 程式人生 > >Java獲得當前日期是星期幾

Java獲得當前日期是星期幾

第一種方法:

/**
	 * 獲取當前日期是星期幾<br>
	 * 
	 * @param date
	 * @return 當前日期是星期幾
	 */
	public String getWeekOfDate(Date date) {
		String[] weekDays = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" };
		Calendar cal = Calendar.getInstance();
		cal.setTime(date);
		int w = cal.get(Calendar.DAY_OF_WEEK) - 1;
		if (w < 0)
			w = 0;
		return weekDays[w];
	}

第二種方法:使用SimpleDateFormat格式化日期
Date date = new Date();
		SimpleDateFormat dateFm = new SimpleDateFormat("EEEE");
		String currSun = dateFm.format(date);
		System.out.println(currSun);
注:格式化字串存在區分大小寫
對於建立SimpleDateFormat傳入的引數:EEEE代表星期,如“星期四”;MMMM代表中文月份,如“七月”;MM代表月份,如“07”;yyyy代表年份,如“2017”;dd代表天,如“05”