获取昨天日期

	/**
	 * 获得昨天日期
	 * 
	 * @return
	 */
	public static String getYesterday() {
		Date date = new Date();
		date = new Date(date.getTime() - 1000 * 60 * 60 * 24);
		SimpleDateFormat dateFm = new SimpleDateFormat("yyyy-MM-dd");
		return dateFm.format(date);
	}

 

你可能感兴趣的:(日期)