java判断时间格式 //格式必须为“YYYY-MM-dd”



java判断时间格式 //格式必须为“YYYY-MM-dd”

/**
	 * 判断时间格式 格式必须为“YYYY-MM-dd”
	 * 2004-2-30 是无效的
	 * 2003-2-29 是无效的
	 * @param sDate
	 * @return
	 */
	public boolean isValidDate(String str) {
		//String str = "2007-01-02";
		DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
		try{
			Date date = (Date)formatter.parse(str);
			DebugPrintf.Printf(str);
			DebugPrintf.Printf(formatter.format(date));
			return str.equals(formatter.format(date));
		}catch(Exception e){
			return false;
		}
	}

—————————————————————————————————————————————————————————————————————————————–

您的十分满意是我追求的宗旨。

您的一点建议是我后续的动力。