通常我们会遇到需要检测一个像"20040531"这样的日期是不是合法,因为不知道这个月又没有31天等等,于是写了一个简单
实用的日期检测工具函数,他利用了Calendar的一个Lenient属性,设置这个方法为false时,便打开了对Calendar中日期的
严格检查,注意一定要调用了cal.getTime()方法的时候才会抛出异常,否则就不能检测成功.
import java.util.Calendar;
/**
*
* 日期检测工具类
* @author zming
* (http://blog.jweb.cn)
* (http://www.blogjava.net/zming)
*/
public class DateCheck {
public static void main(String[] args) {
System.out.println("check 1:"+checkValidDate("20050123"));
System.out.println("check 2:"+checkValidDate("20050133"));
}
/**
* 日期检测工具类
* @param pDateObj 日期字符串
* @return 整型的结果
*/
public static boolean checkValidDate( String pDateObj ) {
boolean ret = true;
if ( pDateObj==null || pDateObj.length() != 8 )
{
ret = false;
}
try {
int year = new Integer(pDateObj.substring( 0, 4 )).intValue();
int month = new Integer(pDateObj.substring( 4, 6 )).intValue();
int day = new Integer(pDateObj.substring( 6 )).intValue();
Calendar cal = Calendar.getInstance();
//允许严格检查日期格式
cal.setLenient( false );
cal.set(year, month-1, day);
//该方法调用就会抛出异常
cal.getTime();
} catch( Exception e ) {
ret = false;
}
return ret;
}
}