package com.ihandy.xgxsigndome.util;
import java.text.ParseException;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import com.ihandy.xgxsigndome.AppConstants;
import com.ihandy.xgxsigndome.business.CommunicationBusiness;
/**
* 身份证校验工具(支持15位或者18位身份证) 身份证号码结构: <li>17位数字和1位校验码:6位地址码数字,8位生日数字,3位出生时间顺序码,1位校验码。</li> <li>
* 地址码(前6位):表示编码对象常住户口所在县(市、旗、区)的行政区划代码,按GB/T2260的规定执行。</li> <li>
* 出生日期码(第七位至十四位):表示编码对象出生的年、月、日,按GB/T7408的规定执行,年、月、日代码之间不用分隔符。</li> <li>顺序码(第十五位至十七位)
* :表示在同一地址码所标识的区域范围内,对同年、同月、同日出生的人编定的顺序号, 顺序码的奇数分配给男性,偶数分配给女性。</li> <li>校验码(第十八位数):</li> <li>十七位数字本体码加权求和公式 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;</li>
* <li>计算模 Y = mod(S, 11)</li> <li>通过模得到对应的校验码 Y: 0 1 2 3 4 5 6 7 8 9 10 校验码: 1 0 X 9 8 7 6 5 4 3 2</li>
*/
public final class IdCardUtil {
private final static Map<Integer, String> zoneNum = new HashMap<Integer, String>(24);
static {
zoneNum.put(11, "北京");
zoneNum.put(12, "天津");
zoneNum.put(13, "河北");
zoneNum.put(14, "山西");
zoneNum.put(15, "内蒙古");
zoneNum.put(21, "辽宁");
zoneNum.put(22, "吉林");
zoneNum.put(23, "黑龙江");
zoneNum.put(31, "上海");
zoneNum.put(32, "江苏");
zoneNum.put(33, "浙江");
zoneNum.put(34, "安徽");
zoneNum.put(35, "福建");
zoneNum.put(36, "江西");
zoneNum.put(37, "山东");
zoneNum.put(41, "河南");
zoneNum.put(42, "湖北");
zoneNum.put(43, "湖南");
zoneNum.put(44, "广东");
zoneNum.put(45, "广西");
zoneNum.put(46, "海南");
zoneNum.put(50, "重庆");
zoneNum.put(51, "四川");
zoneNum.put(52, "贵州");
zoneNum.put(53, "云南");
zoneNum.put(54, "西藏");
zoneNum.put(61, "陕西");
zoneNum.put(62, "甘肃");
zoneNum.put(63, "青海");
zoneNum.put(64, "宁夏");
zoneNum.put(65, "新疆");
zoneNum.put(71, "台湾");
zoneNum.put(81, "香港");
zoneNum.put(82, "澳门");
zoneNum.put(91, "国外");
}
private final static int[] PARITYBIT = {'1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'};
private final static int[] POWER_LIST = {7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2};
private IdCardUtil() {
}
/**
* 判断是否是合法的身份证号码
*
* @param idCardNo 身份证号码
* @return 是否有效
*/
public static boolean isValidIdcard(String idCardNo) {
if (idCardNo == null || (idCardNo.length() != 15 && idCardNo.length() != 18)) {
return false;
}
final char[] cs = idCardNo.toUpperCase().toCharArray();
// (1)校验位数
int power = 0;
for (int i = 0; i < cs.length; i++) {// 循环比正则表达式更快
if (i == cs.length - 1 && cs[i] == 'X') {
break;// 最后一位可以是X或者x
}
if (cs[i] < '0' || cs[i] > '9') {
return false;
}
if (i < cs.length - 1) {
power += (cs[i] - '0') * POWER_LIST[i];
}
}
// (2)校验区位码
if (!zoneNum.containsKey(Integer.valueOf(idCardNo.substring(0, 2)))) {
return false;
}
// (3)校验年份
String year = idCardNo.length() == 15 ? "19" + idCardNo.substring(6, 8) : idCardNo.substring(6, 10);
final int iyear = Integer.parseInt(year);
if (iyear < 1900 || iyear > Calendar.getInstance().get(Calendar.YEAR)) {
return false;// 1900年的PASS,超过今年的PASS
}
// (4)校验月份
String month = idCardNo.length() == 15 ? idCardNo.substring(8, 10) : idCardNo.substring(10, 12);
final int imonth = Integer.parseInt(month);
if (imonth < 1 || imonth > 12) {
return false;
}
// (5)校验天数
String day = idCardNo.length() == 15 ? idCardNo.substring(10, 12) : idCardNo.substring(12, 14);
final int iday = Integer.parseInt(day);
if (iday < 1 || iday > 31) {
return false;
}
// (6)校验一个合法的年月日
if (!validateDate(iyear, imonth, iday)) {
return false;
}
// (7)校验“校验码”
if (idCardNo.length() == 15) {
return true;
}
return cs[cs.length - 1] == PARITYBIT[power % 11];
}
/**
* 从身份证号码中 解析出生日期 返回出生日期 例如: 1984-10-14
*/
public static String parseDateStringFromIdCardNo(String idcardNo) {
if (idcardNo == null || (idcardNo.length() != 15 && idcardNo.length() != 18)) {
return "";
}
final String year = idcardNo.length() == 15 ? "19" + idcardNo.substring(6, 8) : idcardNo.substring(6, 10);
final String month = idcardNo.length() == 15 ? idcardNo.substring(8, 10) : idcardNo.substring(10, 12);
final String day = idcardNo.length() == 15 ? idcardNo.substring(10, 12) : idcardNo.substring(12, 14);
return year + "-" + month + "-" + day;
}
/***
* 从身份证号码中解析 性别
*
* @param idCardNo 身份证号码
* @return 返回 "男" 或 "女" ,不是合法身份证号码 返回""
*/
public static String parseSexFromIdCardNo(String idCardNo) {
if (idCardNo == null || (idCardNo.length() != 15 && idCardNo.length() != 18)) {
return "";
}
final String oddDumber = "13579";
if (idCardNo.length() == 15) { //15位身份证
if (oddDumber.indexOf(idCardNo.charAt(14)) != -1) {
return AppConstants.GENDER_MAN;
} else {
return AppConstants.GENDER_WOMAN;
}
} else { //18位身份证
if (oddDumber.indexOf(idCardNo.charAt(16)) > -1) {
return AppConstants.GENDER_MAN;
} else {
return AppConstants.GENDER_WOMAN;
}
}
}
private static boolean validateDate(int year, int month, int day) {
//比如考虑闰月,大小月等
final String dateString = year + "-" + month + "-" + day;
return DateUtils.isValidDate(dateString, null);
}
/**
* 通过出生日期 计算周岁
*/
public static int calculateAge(String birthdayStr) {
Date birthday = null;
try {
birthday = DateUtils.parseDate(birthdayStr, new String[]{DateUtils.ISO_DATE_PATTERN});
} catch (ParseException ex) {
}
int age = 0;
if (birthday != null) {
Date currentDate = new Date(CommunicationBusiness.getServerCurrentTimeMillis());
currentDate.setDate(currentDate.getDate()+1);
//如果被保人已经过生日了
if (currentDate.getMonth() > birthday.getMonth()
|| (currentDate.getMonth() == birthday.getMonth() && currentDate.getDate() > birthday.getDate())) {
age = currentDate.getYear() - birthday.getYear();
} else {
age = currentDate.getYear() - birthday.getYear() - 1;
}
}
return age;
}
}
import java.text.ParseException;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import com.ihandy.xgxsigndome.AppConstants;
import com.ihandy.xgxsigndome.business.CommunicationBusiness;
/**
* 身份证校验工具(支持15位或者18位身份证) 身份证号码结构: <li>17位数字和1位校验码:6位地址码数字,8位生日数字,3位出生时间顺序码,1位校验码。</li> <li>
* 地址码(前6位):表示编码对象常住户口所在县(市、旗、区)的行政区划代码,按GB/T2260的规定执行。</li> <li>
* 出生日期码(第七位至十四位):表示编码对象出生的年、月、日,按GB/T7408的规定执行,年、月、日代码之间不用分隔符。</li> <li>顺序码(第十五位至十七位)
* :表示在同一地址码所标识的区域范围内,对同年、同月、同日出生的人编定的顺序号, 顺序码的奇数分配给男性,偶数分配给女性。</li> <li>校验码(第十八位数):</li> <li>十七位数字本体码加权求和公式 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;</li>
* <li>计算模 Y = mod(S, 11)</li> <li>通过模得到对应的校验码 Y: 0 1 2 3 4 5 6 7 8 9 10 校验码: 1 0 X 9 8 7 6 5 4 3 2</li>
*/
public final class IdCardUtil {
private final static Map<Integer, String> zoneNum = new HashMap<Integer, String>(24);
static {
zoneNum.put(11, "北京");
zoneNum.put(12, "天津");
zoneNum.put(13, "河北");
zoneNum.put(14, "山西");
zoneNum.put(15, "内蒙古");
zoneNum.put(21, "辽宁");
zoneNum.put(22, "吉林");
zoneNum.put(23, "黑龙江");
zoneNum.put(31, "上海");
zoneNum.put(32, "江苏");
zoneNum.put(33, "浙江");
zoneNum.put(34, "安徽");
zoneNum.put(35, "福建");
zoneNum.put(36, "江西");
zoneNum.put(37, "山东");
zoneNum.put(41, "河南");
zoneNum.put(42, "湖北");
zoneNum.put(43, "湖南");
zoneNum.put(44, "广东");
zoneNum.put(45, "广西");
zoneNum.put(46, "海南");
zoneNum.put(50, "重庆");
zoneNum.put(51, "四川");
zoneNum.put(52, "贵州");
zoneNum.put(53, "云南");
zoneNum.put(54, "西藏");
zoneNum.put(61, "陕西");
zoneNum.put(62, "甘肃");
zoneNum.put(63, "青海");
zoneNum.put(64, "宁夏");
zoneNum.put(65, "新疆");
zoneNum.put(71, "台湾");
zoneNum.put(81, "香港");
zoneNum.put(82, "澳门");
zoneNum.put(91, "国外");
}
private final static int[] PARITYBIT = {'1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'};
private final static int[] POWER_LIST = {7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2};
private IdCardUtil() {
}
/**
* 判断是否是合法的身份证号码
*
* @param idCardNo 身份证号码
* @return 是否有效
*/
public static boolean isValidIdcard(String idCardNo) {
if (idCardNo == null || (idCardNo.length() != 15 && idCardNo.length() != 18)) {
return false;
}
final char[] cs = idCardNo.toUpperCase().toCharArray();
// (1)校验位数
int power = 0;
for (int i = 0; i < cs.length; i++) {// 循环比正则表达式更快
if (i == cs.length - 1 && cs[i] == 'X') {
break;// 最后一位可以是X或者x
}
if (cs[i] < '0' || cs[i] > '9') {
return false;
}
if (i < cs.length - 1) {
power += (cs[i] - '0') * POWER_LIST[i];
}
}
// (2)校验区位码
if (!zoneNum.containsKey(Integer.valueOf(idCardNo.substring(0, 2)))) {
return false;
}
// (3)校验年份
String year = idCardNo.length() == 15 ? "19" + idCardNo.substring(6, 8) : idCardNo.substring(6, 10);
final int iyear = Integer.parseInt(year);
if (iyear < 1900 || iyear > Calendar.getInstance().get(Calendar.YEAR)) {
return false;// 1900年的PASS,超过今年的PASS
}
// (4)校验月份
String month = idCardNo.length() == 15 ? idCardNo.substring(8, 10) : idCardNo.substring(10, 12);
final int imonth = Integer.parseInt(month);
if (imonth < 1 || imonth > 12) {
return false;
}
// (5)校验天数
String day = idCardNo.length() == 15 ? idCardNo.substring(10, 12) : idCardNo.substring(12, 14);
final int iday = Integer.parseInt(day);
if (iday < 1 || iday > 31) {
return false;
}
// (6)校验一个合法的年月日
if (!validateDate(iyear, imonth, iday)) {
return false;
}
// (7)校验“校验码”
if (idCardNo.length() == 15) {
return true;
}
return cs[cs.length - 1] == PARITYBIT[power % 11];
}
/**
* 从身份证号码中 解析出生日期 返回出生日期 例如: 1984-10-14
*/
public static String parseDateStringFromIdCardNo(String idcardNo) {
if (idcardNo == null || (idcardNo.length() != 15 && idcardNo.length() != 18)) {
return "";
}
final String year = idcardNo.length() == 15 ? "19" + idcardNo.substring(6, 8) : idcardNo.substring(6, 10);
final String month = idcardNo.length() == 15 ? idcardNo.substring(8, 10) : idcardNo.substring(10, 12);
final String day = idcardNo.length() == 15 ? idcardNo.substring(10, 12) : idcardNo.substring(12, 14);
return year + "-" + month + "-" + day;
}
/***
* 从身份证号码中解析 性别
*
* @param idCardNo 身份证号码
* @return 返回 "男" 或 "女" ,不是合法身份证号码 返回""
*/
public static String parseSexFromIdCardNo(String idCardNo) {
if (idCardNo == null || (idCardNo.length() != 15 && idCardNo.length() != 18)) {
return "";
}
final String oddDumber = "13579";
if (idCardNo.length() == 15) { //15位身份证
if (oddDumber.indexOf(idCardNo.charAt(14)) != -1) {
return AppConstants.GENDER_MAN;
} else {
return AppConstants.GENDER_WOMAN;
}
} else { //18位身份证
if (oddDumber.indexOf(idCardNo.charAt(16)) > -1) {
return AppConstants.GENDER_MAN;
} else {
return AppConstants.GENDER_WOMAN;
}
}
}
private static boolean validateDate(int year, int month, int day) {
//比如考虑闰月,大小月等
final String dateString = year + "-" + month + "-" + day;
return DateUtils.isValidDate(dateString, null);
}
/**
* 通过出生日期 计算周岁
*/
public static int calculateAge(String birthdayStr) {
Date birthday = null;
try {
birthday = DateUtils.parseDate(birthdayStr, new String[]{DateUtils.ISO_DATE_PATTERN});
} catch (ParseException ex) {
}
int age = 0;
if (birthday != null) {
Date currentDate = new Date(CommunicationBusiness.getServerCurrentTimeMillis());
currentDate.setDate(currentDate.getDate()+1);
//如果被保人已经过生日了
if (currentDate.getMonth() > birthday.getMonth()
|| (currentDate.getMonth() == birthday.getMonth() && currentDate.getDate() > birthday.getDate())) {
age = currentDate.getYear() - birthday.getYear();
} else {
age = currentDate.getYear() - birthday.getYear() - 1;
}
}
return age;
}
}