`
zc_888
  • 浏览: 20151 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
文章分类
社区版块
存档分类
最新评论

java验证日期格式

 
阅读更多

public static boolean checkDate(String date) {
String eL = "^((//d{2}(([02468][048])|([13579][26]))[//-/////s]?((((0?[13578])|(1[02]))[//-/////s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[//-/////s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[//-/////s]?((0?[1-9])|([1-2][0-9])))))|(//d{2}(([02468][1235679])|([13579][01345789]))[//-/////s]?((((0?[13578])|(1[02]))[//-/////s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[//-/////s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[//-/////s]?((0?[1-9])|(1[0-9])|(2[0-8]))))))(//s(((0?[0-9])|([1][0-9])|([2][0-3]))//:([0-5]?[0-9])((//s)|(//:([0-5]?[0-9])))))?$";
Pattern p = Pattern.compile(eL);
Matcher m = p.matcher(date);
boolean b = m.matches();
if (b) {

System.out.println("格式正确");
} else {
System.out.println("格式错误");
}
return b;

}

public static void main(String[] args) {
// TODO Auto-generated method stub
checkDate("2009-01-01 12:13:12");
checkDate("2009-1-1 12:13:12");
checkDate("2009/01/01 12:13:12");
checkDate("2009/1/1 12:13:12");
checkDate("2009-01-01");
checkDate("2009/01/01");
checkDate("2009/13/01");
checkDate("2009/01/01 24:59:59");
}

result:

格式正确
格式正确
格式正确
格式正确
格式正确
格式正确
格式错误
格式错误

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics