【黑马程序员】身份证验证

------- WindowsPhone 7手机开发.Net培训、期待与您交流! -------

题目是这样的:页面上有一张图片,默认是隐藏的,用户在文本框中输入身份证号码(必需符合身份证验证标准),点击按钮,如果年龄大于18岁则显示图片。



这是winForm的设计界面,图片默认是隐藏的,只有输入正确的身份证号码才能查看图片,身份证号码有15位和18位两种。
15位身份证号码=6位地区代码+6位生日+3位编号
18位身份证号码=6位地区代码+8位生日+3位编号+1位检验码
地址码:表示编码对象常住户口所在县(市、旗、区)的行政区划代码,按GB/T2260的规定执行
出生日期码:这就不用我说了,大家都知道
顺序码:表示在同一地址所标识的区域范围内,对同年、同月、同日出生的人编订的顺序号,顺序码的奇数分给男性,偶数分给女性。
下面是代码:
  1.   
  2. private void button1_Click(object sender, EventArgs e)  
  3.   {  
  4.       string id=this.textBox1.Text;  
  5.   
  6.   
  7.   
  8.   
  9.       if (CheckIDCard(id) == true)  
  10.       {  
  11.             
  12.         int birth =  Convert.ToInt32( id.Substring(6,4));  
  13.           //Convert.ToDateTime(birth);   
  14.         int age = DateTime.Now.Year - birth;  
  15.           if (age >= 18)  
  16.           {  
  17.               pictureBox1.Visible = true;  
  18.           }  
  19.       }  
  20.       else  
  21.       {  
  22.           MessageBox.Show("您输入的身份证号码有错误");  
  23.       }  
  24.   }  
  25.   
  26.   
  27.   
  28.   
  29.   public bool CheckIDCard(string id)  
  30.   {  
  31.       if (id.Length == 18)  
  32.       {  
  33.           bool check = CheckIDCard18(id);  
  34.           return check;  
  35.       }  
  36.       else if (id.Length == 15)  
  37.       {  
  38.           bool check = CheckIDCard15(id);  
  39.           return check;  
  40.       }  
  41.       else  
  42.       {  
  43.             
  44.           return false;  
  45.       }  
  46.   }  
  47.   
  48.   
  49.   private bool CheckIDCard18(string id)  
  50.   {  
  51.       long n = 0;  
  52.       if (long.TryParse(id.Remove(17), out n) == false || n < Math.Pow(10, 16) || long.TryParse(id.Replace('X''0').Replace('x''0'), out n) == false)  
  53.       {  
  54.            
  55.           return false;//数字验证  
  56.       }  
  57.       string address = "11x22x35x44x53x12x23x36x45xx54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91";  
  58.       if (address.IndexOf(id.Remove(2)) == -1)  
  59.       {  
  60.            
  61.           return false;//省份验证  
  62.       }  
  63.       string birth = id.Substring(6, 8).Insert(6, "-").Insert(4, "-");  
  64.       DateTime time = new DateTime();  
  65.       if (DateTime.TryParse(birth, out time) == false)  
  66.       {  
  67.             
  68.           return false;//生日验证  
  69.       }  
  70.       string[] arrVarifyCode = ("1,0,x,9,8,7,6,5,4,3,2").Split(',');  
  71.       string[] wi = ("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2").Split(',');  
  72.       char[] ai = id.Remove(17).ToCharArray();  
  73.       int sum = 0;  
  74.       for (int i = 0; i < 17; i++)  
  75.       {  
  76.           sum += int.Parse(wi[i]) * int.Parse(ai[i].ToString());  
  77.       }  
  78.       int y = -1;  
  79.       Math.DivRem(sum,11,out y);  
  80.       if (arrVarifyCode[y] != id.Substring(17, 1).ToLower())  
  81.       {  
  82.           return false;//效验码验证  
  83.       }  
  84.         
  85.       return true;//符合GB11643-1999标准  
  86.   }  
  87.   
  88.   
  89.   
  90.   
  91.   public bool CheckIDCard15(string id)  
  92.   {  
  93.       long n = 0;  
  94.       if (long.TryParse(id, out n) == false || n < Math.Pow(10, 14))  
  95.       {  
  96.           return false;//数字验证  
  97.       }  
  98.       string address = "11x22x35x44x53x12x23x36x45xx54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91";  
  99.       if (address.IndexOf(id.Remove(2)) == -1)  
  100.       {  
  101.           return false;//省份验证  
  102.       }  
  103.       string birth = id.Substring(6, 6).Insert(4, "-").Insert(2, "-");  
  104.       DateTime time = new DateTime();  
  105.       if (DateTime.TryParse(birth, out time) == false)  
  106.       {  
  107.           return false;//生日验证  
  108.       }  
  109.        
  110.       return true;//符合15为身份验证  
  111.   }  
      
      private void button1_Click(object sender, EventArgs e)
        {
            string id=this.textBox1.Text;




            if (CheckIDCard(id) == true)
            {
                
              int birth =  Convert.ToInt32( id.Substring(6,4));
                //Convert.ToDateTime(birth);
              int age = DateTime.Now.Year - birth;
                if (age >= 18)
                {
                    pictureBox1.Visible = true;
                }
            }
            else
            {
                MessageBox.Show("您输入的身份证号码有错误");
            }
        }




        public bool CheckIDCard(string id)
        {
            if (id.Length == 18)
            {
                bool check = CheckIDCard18(id);
                return check;
            }
            else if (id.Length == 15)
            {
                bool check = CheckIDCard15(id);
                return check;
            }
            else
            {
                
                return false;
            }
        }


        private bool CheckIDCard18(string id)
        {
            long n = 0;
            if (long.TryParse(id.Remove(17), out n) == false || n < Math.Pow(10, 16) || long.TryParse(id.Replace('X', '0').Replace('x', '0'), out n) == false)
            {
               
                return false;//数字验证
            }
            string address = "11x22x35x44x53x12x23x36x45xx54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91";
            if (address.IndexOf(id.Remove(2)) == -1)
            {
               
                return false;//省份验证
            }
            string birth = id.Substring(6, 8).Insert(6, "-").Insert(4, "-");
            DateTime time = new DateTime();
            if (DateTime.TryParse(birth, out time) == false)
            {
                
                return false;//生日验证
            }
            string[] arrVarifyCode = ("1,0,x,9,8,7,6,5,4,3,2").Split(',');
            string[] wi = ("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2").Split(',');
            char[] ai = id.Remove(17).ToCharArray();
            int sum = 0;
            for (int i = 0; i < 17; i++)
            {
                sum += int.Parse(wi[i]) * int.Parse(ai[i].ToString());
            }
            int y = -1;
            Math.DivRem(sum,11,out y);
            if (arrVarifyCode[y] != id.Substring(17, 1).ToLower())
            {
                return false;//效验码验证
            }
            
            return true;//符合GB11643-1999标准
        }




        public bool CheckIDCard15(string id)
        {
            long n = 0;
            if (long.TryParse(id, out n) == false || n < Math.Pow(10, 14))
            {
                return false;//数字验证
            }
            string address = "11x22x35x44x53x12x23x36x45xx54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91";
            if (address.IndexOf(id.Remove(2)) == -1)
            {
                return false;//省份验证
            }
            string birth = id.Substring(6, 6).Insert(4, "-").Insert(2, "-");
            DateTime time = new DateTime();
            if (DateTime.TryParse(birth, out time) == false)
            {
                return false;//生日验证
            }
           
            return true;//符合15为身份验证
        }



       运行界面:


如果输入不合法的身份证号码会处错误。


 -------------------------------Windows phone 手机开发ASP .NET培训期待与您交流!-----------------

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值