Android實現身份證號碼驗證
阿新 • • 發佈:2019-01-31
話不多說,直接上程式碼,因為與需求不符,略微修改了程式碼
public class IDCardValidate { public static final String[] ValCodeArr = { "1", "0", "X", "9", "8", "7", "6", "5", "4", "3", "2" }; public static final String[] Wi = { "7", "9", "10", "5", "8", "4", "2", "1", "6", "3", "7", "9", "10", "5", "8", "4", "2" }; // 身份證的最小出生日期,1900年1月1日 private final static Date MINIMAL_BIRTH_DATE = new Date(-2209017600000L); private static final String BIRTH_DATE_FORMAT="yyyyMMdd"; private final static int NEW_CARD_NUMBER_LENGTH = 18; private final static int OLD_CARD_NUMBER_LENGTH = 15; private final static String LENGTH_ERROR="身份證長度必須為15或者18位!"; private final static String NUMBER_ERROR="15位身份證都應該為數字,18位身份證都應該前17位應該都為數字!"; private final static String DATE_ERROR="身份證日期驗證無效!"; private final static String AREA_ERROR="身份證地區編碼錯誤!"; private final static String CHECKCODE_ERROR="身份證最後一位校驗碼有誤!"; //是否需要返回自動補全成的身份證 private static boolean isNeedReturn_AutoCard=false; /** * * @param idcardNumber 需要驗證的身份證 * @param isreturn_AutoCard 驗證無誤後,是否需要返回自動補全身份證 * @return 身份證無誤返回傳入的身份證號 */ public static boolean validate_effective(String idcardNumber,boolean isreturn_AutoCard){ isNeedReturn_AutoCard=isreturn_AutoCard; return validate_effective(idcardNumber); } /** * 身份證校驗 * @param idcardNumber 需要驗證的身份證 * @return 身份證無誤返回傳入的身份證號 */ public static boolean validate_effective(String idcardNumber){ String Ai=idcardNumber.trim(); System.out.println(Ai.length()!=15); if(Ai.length()==15|Ai.length()==18){ //如果為15位則自動補全到18位 if(Ai.length()==OLD_CARD_NUMBER_LENGTH){ Ai=contertToNewCardNumber(Ai); } }else{ //LENGTH_ERROR return false; } // 身份證號的前15,17位必須是阿拉伯數字 for (int i = 0; i < NEW_CARD_NUMBER_LENGTH - 1; i++) { char ch = Ai.charAt(i); if( ch < '0' || ch > '9'){return false;} } //校驗身份證日期資訊是否有效 ,出生日期不能晚於當前時間,並且不能早於1900年 try { Date birthDate =getBirthDate(Ai); if(null == birthDate){ //DATE_ERROR return false; } if(!birthDate.before(new Date())){ //DATE_ERROR return false; } if(!birthDate.after(MINIMAL_BIRTH_DATE)){ //DATE_ERROR return false; } /** * 出生日期中的年、月、日必須正確,比如月份範圍是[1,12],日期範圍是[1,31],還需要校驗閏年、大月、小月的情況時, * 月份和日期相符合 */ String birthdayPart = getBirthDayPart(Ai); String realBirthdayPart =createBirthDateParser().format(birthDate); if(!birthdayPart.equals(realBirthdayPart)){ //DATE_ERROR return false; } } catch (Exception e) { //DATE_ERROR return false; } //校驗地區碼是否正確 Hashtable<String, String> h = GetAreaCode(); if (h.get(Ai.substring(0, 2)) == null) { //AREA_ERROR return false; } //校驗身份證最後一位 身份證校驗碼 if(!calculateVerifyCode(Ai) .equals(String.valueOf(Ai.charAt(NEW_CARD_NUMBER_LENGTH - 1)))){ //CHECKCODE_ERROR return false; } //通過驗證則返回true return true; } /** * 把15位身份證號碼轉換到18位身份證號碼<br> * 15位身份證號碼與18位身份證號碼的區別為:<br> * 1、15位身份證號碼中,"出生年份"欄位是2位,轉換時需要補入"19",表示20世紀<br> * 2、15位身份證無最後一位校驗碼。18位身份證中,校驗碼根據根據前17位生成 * * * @return */ private static String contertToNewCardNumber(String oldCardNumber) { StringBuilder buf = new StringBuilder(NEW_CARD_NUMBER_LENGTH); buf.append(oldCardNumber.substring(0, 6)); buf.append("19"); buf.append(oldCardNumber.substring(6)); buf.append(calculateVerifyCode(buf)); return buf.toString(); } /**計算最後一位校驗碼 加權值%11 * (1)十七位數字本體碼加權求和公式 S = Sum(Ai * Wi), i = 0, ... , 16 ,先對前17位數字的權求和 * Ai:表示第i位置上的身份證號碼數字值 Wi:表示第i位置上的加權因子 Wi: 7 9 10 5 8 4 2 1 6 3 7 9 10 5 8 4 * (2)計算模 Y = mod(S, 11) * (3)通過模得到對應的校驗碼 Y: 0 1 2 3 4 5 6 7 8 9 10 校驗碼: 1 0 X 9 8 7 6 5 4 3 2 * @param cardNumber * @return */ private static String calculateVerifyCode(CharSequence cardNumber) { int sum = 0; for (int i = 0; i < NEW_CARD_NUMBER_LENGTH - 1; i++) { char ch = cardNumber.charAt(i); sum += ((int) (ch - '0')) * Integer.parseInt(Wi[i]); } return ValCodeArr[sum % 11]; } /** * 功能:設定地區編碼 * * @return Hashtable 物件 */ private static Hashtable<String, String> GetAreaCode() { Hashtable<String, String> hashtable = new Hashtable<String, String>(); hashtable.put("11", "北京"); hashtable.put("12", "天津"); hashtable.put("13", "河北"); hashtable.put("14", "山西"); hashtable.put("15", "內蒙古"); hashtable.put("21", "遼寧"); hashtable.put("22", "吉林"); hashtable.put("23", "黑龍江"); hashtable.put("31", "上海"); hashtable.put("32", "江蘇"); hashtable.put("33", "浙江"); hashtable.put("34", "安徽"); hashtable.put("35", "福建"); hashtable.put("36", "江西"); hashtable.put("37", "山東"); hashtable.put("41", "河南"); hashtable.put("42", "湖北"); hashtable.put("43", "湖南"); hashtable.put("44", "廣東"); hashtable.put("45", "廣西"); hashtable.put("46", "海南"); hashtable.put("50", "重慶"); hashtable.put("51", "四川"); hashtable.put("52", "貴州"); hashtable.put("53", "雲南"); hashtable.put("54", "西藏"); hashtable.put("61", "陝西"); hashtable.put("62", "甘肅"); hashtable.put("63", "青海"); hashtable.put("64", "寧夏"); hashtable.put("65", "新疆"); hashtable.put("71", "臺灣"); hashtable.put("81", "香港"); hashtable.put("82", "澳門"); hashtable.put("91", "國外"); return hashtable; } private static Date getBirthDate(String idcard) { Date cacheBirthDate=null; try { cacheBirthDate = createBirthDateParser().parse(getBirthDayPart(idcard)); } catch (Exception e) { throw new RuntimeException("身份證的出生日期無效"); } return new Date(cacheBirthDate.getTime()); } private static SimpleDateFormat createBirthDateParser() { return new SimpleDateFormat(BIRTH_DATE_FORMAT); } private static String getBirthDayPart(String idcardnumber) { return idcardnumber.substring(6, 14); }
使用方法如下:
IDCardValidate.validate_effective("身份證號碼") 返回值為boolean,true代表驗證通過
此工具類包含了對身份證15位數的判斷以及18位,並且添加了每個地區不同的身份證驗證。
有需要的朋友歡迎轉載此文~