您的位置:首页 > 编程语言 > Java开发

java 中 Date 类型快判断日期是否合法.

2015-01-29 16:42 615 查看
// 如果日期不合法,则抛异常
try {
String date_str = "5555-22-33";

SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd");
format.setLenient(false);
Date date = format.parse(date_str);

} catch (Exception ex){
ex.printStackTrace();
System.out.println("日期不合法");
}


JDK 中的注释说明:

/**
* Specify whether or not date/time parsing is to be lenient.  With
* lenient parsing, the parser may use heuristics to interpret inputs that
* do not precisely match this object's format.  With strict parsing,
* inputs must match this object's format.
*
* <p>This method is equivalent to the following call.
* <blockquote><pre>
*  getCalendar().setLenient(lenient)
* </pre></blockquote>
*
* <p>This leniency value is overwritten by a call to {@link
* #setCalendar(java.util.Calendar) setCalendar()}.
*
* @param lenient when {@code true}, parsing is lenient
* @see java.util.Calendar#setLenient(boolean)
*/
public void setLenient(boolean lenient)
{
calendar.setLenient(lenient);
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: