1 import java.util.Calendar;
2 import java.util.GregorianCalendar;
3 import java.util.HashMap;
4 import java.util.Map;
5
6 /**
7 * 身份证验证的工具(支持15位或18位省份证)
8 * 身份证号码结构:
9 * 17位数字和1位校验码:6位地址码数字,8位生日数字,3位出生时间顺序号,1位校验码。
10 * 地址码(前6位):表示对象常住户口所在县(市、镇、区)的行政区划代码,按GB/T2260的规定执行。
11 * 出生日期码,(第七位 至十四位):表示编码对象出生年、月、日,按GB按GB/T7408的规定执行,年、月、日代码之间不用分隔符。
12 * 顺序码(第十五位至十七位):表示在同一地址码所标示的区域范围内,对同年、同月、同日出生的人编订的顺序号,
13 * 顺序码的奇数分配给男性,偶数分配给女性。
14 * 校验码(第十八位数):
15 * 十七位数字本体码加权求和公式 s = sum(Ai*Wi), i = 0,,16,先对前17位数字的权求和;
16 * Ai:表示第i位置上的身份证号码数字值.Wi:表示第i位置上的加权因.Wi: 7 9 10 5 8 4 2 1 6 3 7 9 10 5 8 4 2;
17 * 计算模 Y = mod(S, 11)
18 * 通过模得到对应的校验码 Y: 0 1 2 3 4 5 6 7 8 9 10 校验码: 1 0 X 9 8 7 6 5 4 3 2
19 */
20 public class IDCardUtil {
21 final static Map<Integer, String> zoneNum = new HashMap<Integer, String>();
22 static {
23 zoneNum.put(11, "北京");
24 zoneNum.put(12, "天津");
25 zoneNum.put(13, "河北");
26 zoneNum.put(14, "山西");
27 zoneNum.put(15, "内蒙古");
28 zoneNum.put(21, "辽宁");
29 zoneNum.put(22, "吉林");
30 zoneNum.put(23, "黑龙江");
31 zoneNum.put(31, "上海");
32 zoneNum.put(32, "江苏");
33 zoneNum.put(33, "浙江");
34 zoneNum.put(34, "安徽");
35 zoneNum.put(35, "福建");
36 zoneNum.put(36, "江西");
37 zoneNum.put(37, "山东");
38 zoneNum.put(41, "河南");
39 zoneNum.put(42, "湖北");
40 zoneNum.put(43, "湖南");
41 zoneNum.put(44, "广东");
42 zoneNum.put(45, "广西");
43 zoneNum.put(46, "海南");
44 zoneNum.put(50, "重庆");
45 zoneNum.put(51, "四川");
46 zoneNum.put(52, "贵州");
47 zoneNum.put(53, "云南");
48 zoneNum.put(54, "西藏");
49 zoneNum.put(61, "陕西");
50 zoneNum.put(62, "甘肃");
51 zoneNum.put(63, "青海");
52 zoneNum.put(64, "新疆");
53 zoneNum.put(71, "台湾");
54 zoneNum.put(81, "香港");
55 zoneNum.put(82, "澳门");
56 zoneNum.put(91, "外国");
57 }
58
59 final static int[] PARITYBIT = {'1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2'};
60 final static int[] POWER_LIST = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10,
61 5, 8, 4, 2};
62
63 /**
64 * 身份证验证
65 *@param s 号码内容
66 *@return 是否有效 null和"" 都是false
67 */
68 public static boolean isIDCard(String certNo){
69 if(certNo == null || (certNo.length() != 15 && certNo.length() != 18))
70 return false;
71 final char[] cs = certNo.toUpperCase().toCharArray();
72 //校验位数
73 int power = 0;
74 for(int i=0; i<cs.length; i++){
75 if(i==cs.length-1 && cs[i] == 'X')
76 break;//最后一位可以 是X或x
77 if(cs[i]<'0' || cs[i]>'9')
78 return false;
79 if(i < cs.length -1){
80 power += (cs[i] - '0') * POWER_LIST[i];
81 }
82 }
83
84 //校验区位码
85 if(!zoneNum.containsKey(Integer.valueOf(certNo.substring(0,2)))){
86 return false;
87 }
88
89 //校验年份
90 String year = certNo.length() == 15 ? getIdcardCalendar() + certNo.substring(6,8) :certNo.substring(6, 10);
91
92 final int iyear = Integer.parseInt(year);
93 if(iyear < 1900 || iyear > Calendar.getInstance().get(Calendar.YEAR))
94 return false;//1900年的PASS,超过今年的PASS
95
96 //校验月份
97 String month = certNo.length() == 15 ? certNo.substring(8, 10) : certNo.substring(10,12);
98 final int imonth = Integer.parseInt(month);
99 if(imonth <1 || imonth >12){
100 return false;
101 }
102
103 //校验天数
104 String day = certNo.length() ==15 ? certNo.substring(10, 12) : certNo.substring(12, 14);
105 final int iday = Integer.parseInt(day);
106 if(iday < 1 || iday > 31)
107 return false;
108
109 //校验"校验码"
110 if(certNo.length() == 15)
111 return true;
112 return cs[cs.length -1 ] == PARITYBIT[power % 11];
113 }
114
115 private static int getIdcardCalendar() {
116 GregorianCalendar curDay = new GregorianCalendar();
117 int curYear = curDay.get(Calendar.YEAR);
118 int year2bit = Integer.parseInt(String.valueOf(curYear).substring(2));
119 return year2bit;
120 }
121
122
123
124 public static void main(String[] args) {
125 boolean mark = isIDCard("450981198802261753");
126 System.out.println(mark);
127 }
128
129 }