分享
 
 
 

一个校验身份证,更新身份证,获取身份证信息的JAVA程序

王朝java/jsp·作者佚名  2006-01-10
窄屏简体版  字體: |||超大  

一个校验身份证,更新身份证,获取身份证信息的JAVA程序。很简单,主要是为了完成学校的作业。反正不管怎么说也是自己写的,所以就拿上来自爽一下了 呵呵 以后有时间会把这个程序更新成友好的用户界面的形式。

//////////////////////////////////////////////////////////////

(请将ID.getCheck()改为:

public char getCheck()

{

if(id.charAt(17)=='X')

{

return 'x';

}

else

{

return id.charAt(17);

}

}

/////////////////////////////////////////////////////////////

import javax.swing.JOptionPane;

class ID

{

private String id;

public ID(String s)

{

id=s;

}

public String getID()

{

return id;

}

public int getLength()

{

return id.length();

}

public String getProvince()

{

return id.substring(0,2);

}

public String getCity()

{

return id.substring(2,4);

}

public String getCountry()

{

return id.substring(4,6);

}

public String getYear()

{

if(id.length()==15)

{

return id.substring(6,8);

}

if(id.length()==18)

{

return id.substring(6,10);

}

return "error";

}

public String getMonth()

{

if(id.length()==15)

{

return id.substring(8,10);

}

if(id.length()==18)

{

return id.substring(10,12);

}

return "error";

}

public String getDay()

{

if(id.length()==15)

{

return id.substring(10,12);

}

if(id.length()==18)

{

return id.substring(12,14);

}

return "error";

}

private String getOrder()

{

if(id.length()==15)

{

return id.substring(12,15);

}

if(id.length()==18)

{

return id.substring(14,17);

}

return "error";

}

public String getSex()

{

int p=Integer.parseInt(getOrder());

if(p%2==1)

{

return "男性";

}

else

{

return "女性";

}

}

public char getCheck()

{

return id.charAt(17);

}

public char getCheckKey()

{

String idmid;

if(id.length()==15)

{

idmid=id.substring(0,6)+"19"+id.substring(6,15)+' ';

}

else

{

idmid=id;

}

int[] wi=new int[19];

for(int i=2;i<wi.length;i++)

{

int a=(int)Math.pow(2,i-1);

wi[i]=a%11;

}

int sum=0;

for(int i=2;i<wi.length;i++)

{

sum=sum+wi[i]*Integer.parseInt(idmid.substring(18-i,18-i+1));

}

char[] arr=new char[]{'1','0','x','9','8','7','6','5','4','3','2'};

return arr[sum%11];

}

}

class IDCheck

{

private static boolean isfullYear(ID x)

{

int ye=(x.getLength()==18?Integer.parseInt(x.getYear()):Integer.parseInt(x.getYear())+1900);

if((ye%4==0&&ye%100!=0)||ye%400==0)

{

return true;

}

else

{

return false;

}

}

private static String getInformation(ID x)

{

String result="";

if(x.getLength()==15)

{

result="旧身份证。\n";

}

if(x.getLength()==18)

{

result="新身份证。\n";

}

result=result+"身份证号码为:"+x.getID()+"\n省份代码为:"+x.getProvince()+" 城市代码为:"+x.getCity()+" 区县代码为:"+x.getCountry()+"\n出生日期为:"+x.getYear()+"年"+x.getMonth()+"月"+x.getDay()+"日"+"\n性别为:"+x.getSex();

return result;

}

private static String renew(ID x)

{

return x.getID().substring(0,6)+"19"+x.getID().substring(6,15)+x.getCheckKey();

}

private static String check(ID x)

{

for(int i=0;(x.getLength()==18?i<x.getLength()-1:i<x.getLength());i++)

{

if(x.getID().charAt(i)<'0'||x.getID().charAt(i)>'9')

{

return "身份证中含有非法字符!";

}

}

if((x.getLength()==18?Integer.parseInt(x.getYear()):Integer.parseInt(x.getYear())+1900)>1989||(x.getLength()==18?Integer.parseInt(x.getYear()):Integer.parseInt(x.getYear())+1900)<1900)

{

return "出生年信息错误!";

}

if(Integer.parseInt(x.getMonth())>12||Integer.parseInt(x.getMonth())<1)

{

return "出生月信息错误!";

}

if(Integer.parseInt(x.getMonth())==1||Integer.parseInt(x.getMonth())==3||Integer.parseInt(x.getMonth())==5||Integer.parseInt(x.getMonth())==7||Integer.parseInt(x.getMonth())==8||Integer.parseInt(x.getMonth())==10||Integer.parseInt(x.getMonth())==12)

{

if(Integer.parseInt(x.getDay())>31||Integer.parseInt(x.getDay())<1)

{

return "出生日信息错误!";

}

}

else if(Integer.parseInt(x.getMonth())!=2)

{

if(Integer.parseInt(x.getDay())>30||Integer.parseInt(x.getDay())<1)

{

return "出生日信息错误!";

}

}

else

{

if(isfullYear(x))

{

if(Integer.parseInt(x.getDay())>29||Integer.parseInt(x.getDay())<1)

{

return "出生日信息错误!";

}

}

else

{

if(Integer.parseInt(x.getDay())>28||Integer.parseInt(x.getDay())<1)

{

return "出生日信息错误!";

}

}

}

if(x.getLength()==18&&x.getCheck()!=x.getCheckKey())

{

return "校验码出错!";

}

return "right";

}

public static void main(String[] arg)

{

String idnum="";

while(true)

{

idnum=JOptionPane.showInputDialog("请输入身份证号码 (制作:郭渊哲(Giftedbird))");

if(idnum.length()==15||idnum.length()==18)

{

break;

}

JOptionPane.showMessageDialog(null,"您输入的身份证号码的位数不正确!请重新输入!","ERROR!!!",JOptionPane.ERROR_MESSAGE);

}

ID oldid=new ID(idnum);

if(check(oldid).compareTo("right")!=0)

{

String errorInformation="这个身份证是假的!\n虚假信息:"+check(oldid);

JOptionPane.showMessageDialog(null,errorInformation,"RESULT",JOptionPane.ERROR_MESSAGE);

return;

}

ID newid;

JOptionPane.showMessageDialog(null,getInformation(oldid),"RESULT",JOptionPane.INFORMATION_MESSAGE);

if(idnum.length()==15)

{

while(true)

{

String mid=JOptionPane.showInputDialog("这是一个旧身份证,是否升级为18位?(Y/N)");

if(mid.equals("y")||mid.equals("Y"))

{

newid=new ID(renew(oldid));

JOptionPane.showMessageDialog(null,"身份证已经更新!\n"+getInformation(newid),"RESULT",JOptionPane.INFORMATION_MESSAGE);

break;

}

if(mid.equals("n")||mid.equals("N"))

{

break;

}

JOptionPane.showMessageDialog(null,"您输入错误!请重新输入!","ERROR!!!",JOptionPane.ERROR_MESSAGE);

}

}

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有