验证身份证有效性:

2024-05-26 02:18
文章标签 验证 身份证 有效性

本文主要是介绍验证身份证有效性:,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

package com.phonefu.android.help;


import java.util.HashMap;


/**
 * 身份证号校验 
 */
public class IdCard {


private String _codeError;


// wi =2(n-1)(mod 11)
final int[] wi = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2, 1 };
// verify digit
final int[] vi = { 1, 0, 'X', 9, 8, 7, 6, 5, 4, 3, 2 };
private int[] ai = new int[18];
private static String[] _areaCode = { "11", "12", "13", "14", "15", "21", "22", "23", "31", "32", "33", "34", "35",
"36", "37", "41", "42", "43", "44", "45", "46", "50", "51", "52", "53", "54", "61", "62", "63", "64", "65",
"71", "81", "82", "91" };
private static HashMap<String, Integer> dateMap;
private static HashMap<String, String> areaCodeMap;
static {
dateMap = new HashMap<String, Integer>();
dateMap.put("01", 31);
dateMap.put("02", null);
dateMap.put("03", 31);
dateMap.put("04", 30);
dateMap.put("05", 31);
dateMap.put("06", 30);
dateMap.put("07", 31);
dateMap.put("08", 31);
dateMap.put("09", 30);
dateMap.put("10", 31);
dateMap.put("11", 30);
dateMap.put("12", 31);
areaCodeMap = new HashMap<String, String>();
for (String code : _areaCode) {
areaCodeMap.put(code, null);
}
}


// 验证身份证位数,15位和18位身份证
public boolean verifyLength(String code) {
int length = code.length();
if (length == 15 || length == 18) {
return true;
} else {
_codeError = "错误:输入的身份证号不是15位和18位的";
return false;
}
}


// 判断地区码
public boolean verifyAreaCode(String code) {
String areaCode = code.substring(0, 2);
// Element child= _areaCodeElement.getChild("_"+areaCode);
if (areaCodeMap.containsKey(areaCode)) {
return true;
} else {
_codeError = "错误:输入的身份证号的地区码(1-2位)[" + areaCode + "]不符合中国行政区划分代码规定(GB/T2260-1999)";
return false;
}
}


// 判断月份和日期
public boolean verifyBirthdayCode(String code) {
// 验证月份
String month = code.substring(10, 12);
boolean isEighteenCode = (18 == code.length());
if (!dateMap.containsKey(month)) {
_codeError = "错误:输入的身份证号" + (isEighteenCode ? "(11-12位)" : "(9-10位)") + "不存在[" + month
+ "]月份,不符合要求(GB/T7408)";
return false;
}
// 验证日期
String dayCode = code.substring(12, 14);
Integer day = dateMap.get(month);
String yearCode = code.substring(6, 10);
Integer year = Integer.valueOf(yearCode);


// 非2月的情况
if (day != null) {
if (Integer.valueOf(dayCode) > day || Integer.valueOf(dayCode) < 1) {
_codeError = "错误:输入的身份证号" + (isEighteenCode ? "(13-14位)" : "(11-13位)") + "[" + dayCode
+ "]号不符合小月1-30天大月1-31天的规定(GB/T7408)";
return false;
}
}
// 2月的情况
else {
// 闰月的情况
if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) {
if (Integer.valueOf(dayCode) > 29 || Integer.valueOf(dayCode) < 1) {
_codeError = "错误:输入的身份证号" + (isEighteenCode ? "(13-14位)" : "(11-13位)") + "[" + dayCode + "]号在"
+ year + "闰年的情况下未符合1-29号的规定(GB/T7408)";
return false;
}
}
// 非闰月的情况
else {
if (Integer.valueOf(dayCode) > 28 || Integer.valueOf(dayCode) < 1) {
_codeError = "错误:输入的身份证号" + (isEighteenCode ? "(13-14位)" : "(11-13位)") + "[" + dayCode + "]号在"
+ year + "平年的情况下未符合1-28号的规定(GB/T7408)";
return false;
}
}
}
return true;
}


// 验证身份除了最后位其他的是否包含字母
public boolean containsAllNumber(String code) {
String str = "";
if (code.length() == 15) {
str = code.substring(0, 15);
} else if (code.length() == 18) {
str = code.substring(0, 17);
}
char[] ch = str.toCharArray();
for (int i = 0; i < ch.length; i++) {
if (!(ch[i] >= '0' && ch[i] <= '9')) {
_codeError = "错误:输入的身份证号第" + (i + 1) + "位包含字母";
return false;
}
}
return true;
}


public String getCodeError() {
return _codeError;
}


// 验证身份证
public boolean verify(String idcard) {
_codeError = "";
if (idcard == null) {
return false;
}
// 验证身份证位数,15位和18位身份证
if (!verifyLength(idcard)) {
return false;
}
// 验证身份除了最后位其他的是否包含字母
if (!containsAllNumber(idcard)) {
return false;
}


// 如果是15位的就转成18位的身份证
String eifhteencard = "";
if (idcard.length() == 15) {
eifhteencard = uptoeighteen(idcard);
} else {
eifhteencard = idcard;
}
// 验证身份证的地区码
if (!verifyAreaCode(eifhteencard)) {
return false;
}
// 判断月份和日期
if (!verifyBirthdayCode(eifhteencard)) {
return false;
}
// 验证18位校验码,校验码采用ISO 7064:1983,MOD 11-2 校验码系统
if (!verifyMOD(eifhteencard)) {
return false;
}
return true;
}


// 验证18位校验码,校验码采用ISO 7064:1983,MOD 11-2 校验码系统
public boolean verifyMOD(String code) {
String verify = code.substring(17, 18);
if ("x".equals(verify)) {
code = code.replaceAll("x", "X");
verify = "X";
}
String verifyIndex = getVerify(code);
if (verify.equals(verifyIndex)) {
return true;
}
// int x=17;
// if(code.length()==15){
// x=14;
// }
_codeError = "错误:输入的身份证号最末尾的数字验证码错误";
return false;
}


// 获得校验位
public String getVerify(String eightcardid) {
int remaining = 0;


if (eightcardid.length() == 18) {
eightcardid = eightcardid.substring(0, 17);
}


if (eightcardid.length() == 17) {
int sum = 0;
for (int i = 0; i < 17; i++) {
String k = eightcardid.substring(i, i + 1);
ai[i] = Integer.parseInt(k);
}


for (int i = 0; i < 17; i++) {
sum = sum + wi[i] * ai[i];
}
remaining = sum % 11;
}


return remaining == 2 ? "X" : String.valueOf(vi[remaining]);
}


// 15位转18位身份证
public String uptoeighteen(String fifteencardid) {
String eightcardid = fifteencardid.substring(0, 6);
eightcardid = eightcardid + "19";
eightcardid = eightcardid + fifteencardid.substring(6, 15);
eightcardid = eightcardid + getVerify(eightcardid);
return eightcardid;
}


public static void main(String[] args) {
boolean result = new IdCard().verify("421181198902185817");
System.out.println(result);
}
}

这篇关于验证身份证有效性:的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1003277

相关文章

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

easyui同时验证账户格式和ajax是否存在

accountName: {validator: function (value, param) {if (!/^[a-zA-Z][a-zA-Z0-9_]{3,15}$/i.test(value)) {$.fn.validatebox.defaults.rules.accountName.message = '账户名称不合法(字母开头,允许4-16字节,允许字母数字下划线)';return fal

easyui 验证下拉菜单select

validatebox.js中添加以下方法: selectRequired: {validator: function (value) {if (value == "" || value.indexOf('请选择') >= 0 || value.indexOf('全部') >= 0) {return false;}else {return true;}},message: '该下拉框为必选项'}

web群集--nginx配置文件location匹配符的优先级顺序详解及验证

文章目录 前言优先级顺序优先级顺序(详解)1. 精确匹配(Exact Match)2. 正则表达式匹配(Regex Match)3. 前缀匹配(Prefix Match) 匹配规则的综合应用验证优先级 前言 location的作用 在 NGINX 中,location 指令用于定义如何处理特定的请求 URI。由于网站往往需要不同的处理方式来适应各种请求,NGINX 提供了多种匹

React 笔记 父子组件传值 | 父组件调用子组件数据 | defaultProps | propsType合法性验证

1.通过props实现父组件像子组件传值 、方法、甚至整个父组件 传递整个父组件则   [变量名]={this} import Header from "./Header"render(){return(<Header msg={"我是props传递的数据"}/>)} import React,{Component} from "react";class Header extends

Python批量读取身份证信息录入系统和重命名

前言 大家好, 如果你对自动化处理身份证图片感兴趣,可以尝试以下操作:从身份证图片中快速提取信息,填入表格并提交到网页系统。如果你无法完成这个任务,我们将在“Python自动化办公2.0”课程中详细讲解实现整个过程。 实现过程概述: 模块与功能: re 模块:用于从 OCR 识别出的文本中提取所需的信息。 日期模块:计算年龄。 pandas:处理和操作表格数据。 PaddleOCR:百度的

Java验证辛钦大数定理

本实验通过程序模拟采集大量的样本数据来验证辛钦大数定理。   实验环境: 本实验采用Java语言编程,开发环境为Eclipse,图像生成使用JFreeChart类。   一,验证辛钦大数定理 由辛钦大数定理描述为: 辛钦大数定理(弱大数定理)  设随机变量序列 X1, X2, … 相互独立,服从同一分布,具有数学期望E(Xi) = μ, i = 1, 2, …, 则对于任意正数ε ,

贷款利率高低跟什么有关?仅凭身份证就能贷到款?额度是多少?

在金融的广阔舞台上,借款人的“信用基石”——即其综合资质,是决定贷款利率高低的决定性因素。这并非偶然,而是银行基于详尽的风险评估与收益预期所做出的精准判断。 需明确的是,贷款的易得性并不意味着无门槛的放任。它更像是设置了一个更为宽泛的准入标准,让多样化的借款人能够有机会尝试,但能否真正获得贷款,还需依据个人的经济实力、职业稳定性及信用历史的纯净度来综合评判。银行的核心考量始终在于确保资金的安