zoukankan      html  css  js  c++  java
  • Java实现18位身份证校验代码

    import java.util.Scanner;
    
    /**
     * 18位身份证校验
     * @author 【J.H】
     *
     */
    public class Test {
    	// 身份证校验
    	public static boolean checkId(String id) {
    		char[] ch = id.toCharArray();
    		boolean flag1 = verForm(id);
    		boolean flag2 = verify(ch);
    		if (flag1 == true && flag2 == true) {
    			return true;
    		}
    		return false;
    	}
    	// <------------------身份证格式的正则校验----------------->
    	public static boolean verForm(String num) {
    		String reg = "^\d{15}$|^\d{17}[0-9Xx]$";
    		if (!num.matches(reg)) {
    			return false;
    		}
    		return true;
    	}
    	// <------------------身份证最后一位的校验算法----------------->
    	public static boolean verify(char[] id) {
    		int sum = 0;
    		int w[] = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 };
    		char[] ch = { '1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2' };
    		for (int i = 0; i < id.length - 1; i++) {
    			sum += (id[i] - '0') * w[i];
    		}
    		int c = sum % 11;
    		char code = ch[c];
    		char last = id[id.length - 1];
    		last = last == 'x' ? 'X' : last;
    		return last == code;
    	}
    	
    	public static void main(String[] args){
    		boolean boo = true;
    		while (boo) {
    			System.out.println("请输入要校验的身份证号码:(F/结束)");
    			Scanner sc = new Scanner(System.in);
    			String idCard = sc.nextLine();
    			if(idCard.equals("F")){
    				boo = false;
    				System.out.println("See You!!!");
    			}else{
    				System.out.println(checkId(idCard));
    			}	
    		}
    		
    	}
    }
    
  • 相关阅读:
    小组开发地铁项目
    Qt 编译时遇到 error: [debug/qrc_music.cpp] Error 1
    Qt 使用irrlicht(鬼火)3D引擎
    Qt编译出错:During startup program exited with code 0xc0000135
    Qt 飞机仪表显示
    Qt 在Label上面绘制罗盘
    Qt 播放音频文件
    Git 使用 粗糙记录
    Qt 建立带有子项目的工程
    QSS 的选择器
  • 原文地址:https://www.cnblogs.com/Big-Boss/p/9431624.html
Copyright © 2011-2022 走看看