1. 程式人生 > >獲取前一週的日期

獲取前一週的日期

	//獲取最近一週的日期
	 String[] getBeforeWeekOfDate(){
		Calendar calendar=Calendar.getInstance();
		//當前日期是2017-06-5
		String[]oneWeekDate=new String[7];
		SimpleDateFormat sf=new SimpleDateFormat("yyyy-MM-dd");
		for(int i=0;i<7;i++){
			calendar.add(Calendar.DAY_OF_MONTH, -1);
			oneWeekDate[i]=sf.format(calendar.getTime()).toString();
		}
		return oneWeekDate;
	}
	//結果是
//		2017-06-04
//		2017-06-03
//		2017-06-02
//		2017-06-01
//		2017-05-31
//		2017-05-30
//		2017-05-29