加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

身份验证-正则表达式(JAVA)

发布时间:2020-12-14 01:42:53 所属栏目:百科 来源:网络整理
导读:/** * 功能:身份证的有效验证 * @author * @param num 身份证号 * @return 有效:返回true; 无效:false. * */ public static boolean idCardValidate(String num) { String[] ValCodeArr = { "1","0","x","9","8","7","6","5","4","3","2" }; String[] Wi =
/** * 功能:身份证的有效验证 * @author * @param num 身份证号 * @return 有效:返回true; 无效:false. * */ public static boolean idCardValidate(String num) { String[] ValCodeArr = { "1","0","x","9","8","7","6","5","4","3","2" }; String[] Wi = { "7","10","2","1","2" }; String Ai = ""; // 号码的长度 15位或18位 if (num.length() != 15 && num.length() != 18) { return false; } // 数字 除最后一位都为数字 if (num.length() == 18) { Ai = num.substring(0,17); } else if (num.length() == 15) { Ai = num.substring(0,6) + "19" + num.substring(6,15); } // 身份证15位号码都应为数字 ; 18位号码除最后一位外,都应为数字。 if (!isNumeric(Ai)) { return false; } // 出生年月是否有效 String strYear = Ai.substring(6,10);// 年份 String strMonth = Ai.substring(10,12);// 月份 String strDay = Ai.substring(12,14);// 日 // 身份证生日是否有效 if (!isDate(strYear + "-" + strMonth + "-" + strDay)) { return false; } GregorianCalendar gc = new GregorianCalendar(); SimpleDateFormat s = new SimpleDateFormat("yyyy-MM-dd"); try { if ((gc.get(Calendar.YEAR) - Integer.parseInt(strYear)) > 150 || (gc.getTime().getTime() - s.parse(strYear + "-" + strMonth + "-" + strDay).getTime()) < 0) { //身份证生日不在有效范围。 return false; } } catch (NumberFormatException e) { e.printStackTrace(); } catch (java.text.ParseException e) { e.printStackTrace(); } if (Integer.parseInt(strMonth) > 12 || Integer.parseInt(strMonth) == 0) { // 身份证月份无效 return false; } if (Integer.parseInt(strDay) > 31 || Integer.parseInt(strDay) == 0) { // 身份证日期无效 return false; } // 判断最后一位的值 int TotalmulAiWi = 0; for (int i = 0; i < 17; i++) { TotalmulAiWi = TotalmulAiWi + Integer.parseInt(String.valueOf(Ai.charAt(i))) * Integer.parseInt(Wi[i]); } int modValue = TotalmulAiWi % 11; String strVerifyCode = ValCodeArr[modValue]; Ai = Ai + strVerifyCode; if (num.length() == 18) { if (!Ai.equals(num)) { // 身份证无效,不是合法的身份证号码 return false; } else { return true; } } return true; } /** * 功能:判断字符串是否为数字 * * @param str * @return */ private static boolean isNumeric(String str) { Pattern pattern = Pattern.compile("[0-9]*"); Matcher isNum = pattern.matcher(str); if (isNum.matches()) { return true; } else { return false; } } /** * 功能:判断字符串是否为日期格式 * * @param str * @return */ private static boolean isDate(String strDate) { Pattern pattern = Pattern .compile("^((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-2][0-3])):([0-5]?[0-9])((s)|(:([0-5]?[0-9])))))?$"); Matcher m = pattern.matcher(strDate); if (m.matches()) { return true; } else { return false; } }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读