Javaは身分証明書番号が正しいかどうかを判断する
方法は次のとおりです.
public static final int IDENTITYCODE_OLD = 15; // 15
public static final int IDENTITYCODE_NEW = 18; // 18
public static int[] Wi = new int[17];
/**
* 。
*
* @param code
* 。
* @return , true, false。
*/
public static boolean isIdentityCode(String code) {
if (StringUtils.isEmpty(code)) {
return false;
}
String birthDay = "";
code = code.trim().toUpperCase();
// 15 18
if ((code.length() != IDENTITYCODE_OLD)
&& (code.length() != IDENTITYCODE_NEW)) {
return false;
}
// (18 x)
Pattern pt = Pattern.compile("(^\\d{15}$)|(\\d{17}(?:\\d|x|X)$)");
Matcher mt = pt.matcher(code);
if (!mt.find()) {
return false;
}
//
if (code.length() == IDENTITYCODE_OLD) {
birthDay = "19" + code.substring(6, 12);
} else {
birthDay = code.substring(6, 14);
}
if (DateUtils.dateFormatToDate(birthDay, "yyyyMMdd") == null) {
return false;
}
//
if (code.length() == IDENTITYCODE_NEW) {
String lastNum = getCheckFlag(code.substring(0,
IDENTITYCODE_NEW - 1));
// check last digit
if (!("" + code.charAt(IDENTITYCODE_NEW - 1)).toUpperCase().equals(
lastNum)) {
return false;
}
}
return true;
}