身份证号生成
代码可直接运行,当前是生成2000个身份证号码到 "E:\\IdCardGenerator.txt",可以主函数里根据自己的需求更改。 用notepad++打开 可自动换行
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.util.calendar;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
public class IdCardGenerator {
public static final Map<String, integer> areaCode = new HashMap<String, Integer>();
static {//可根据自己的需求放入需要的行政编码
IdCardGenerator.areaCode.put("钦南区", 450702);
IdCardGenerator.areaCode.put("钦北区", 450703);
IdCardGenerator.areaCode.put("灵山县", 450721);
IdCardGenerator.areaCode.put("浦北县", 450722);
IdCardGenerator.areaCode.put("贵港市", 450800);
IdCardGenerator.areaCode.put("市辖区", 450801);
IdCardGenerator.areaCode.put("港北区", 450802);
IdCardGenerator.areaCode.put("港南区", 450803);
IdCardGenerator.areaCode.put("覃塘区", 450804);
IdCardGenerator.areaCode.put("平南县", 450821);
IdCardGenerator.areaCode.put("桂平市", 450881);
IdCardGenerator.areaCode.put("玉林市", 450900);
IdCardGenerator.areaCode.put("市辖区", 450901);
IdCardGenerator.areaCode.put("玉州区", 450902);
IdCardGenerator.areaCode.put("容 县", 450921);
IdCardGenerator.areaCode.put("陆川县", 450922);
IdCardGenerator.areaCode.put("博白县", 450923);
IdCardGenerator.areaCode.put("兴业县", 450924);
IdCardGenerator.areaCode.put("北流市", 450981);
IdCardGenerator.areaCode.put("百色市", 451000);
IdCardGenerator.areaCode.put("市辖区", 451001);
IdCardGenerator.areaCode.put("右江区", 451002);
IdCardGenerator.areaCode.put("田阳县", 451021);
IdCardGenerator.areaCode.put("田东县", 451022);
IdCardGenerator.areaCode.put("平果县", 451023);
IdCardGenerator.areaCode.put("德保县", 451024);
IdCardGenerator.areaCode.put("靖西县", 451025);
IdCardGenerator.areaCode.put("那坡县", 451026);
IdCardGenerator.areaCode.put("凌云县", 451027);
IdCardGenerator.areaCode.put("乐业县", 451028);
}
/**
* 生成方法
* @return
*/
public String generate() {
stringbuilder generater = new StringBuilder();
generater.APPend(this.randomAreaCode());
generater.append(this.randomBirthday());
generater.append(this.randomCode());
generater.append(this.calcTrailingNumber(generater.toString().toCharArray()));
return generater.toString();
}
/**
* 随机地区
* @return
*/
public int randomAreaCode() {
int index = (int) (Math.random() * IdCardGenerator.areaCode.size());
Collection<Integer> values = IdCardGenerator.areaCode.values();
Iterator<Integer> it = values.iterator();
int i = 0;
int code = 0;
while (i < index && it.hasNext()) {
i++;
code = it.next();
}
return code;
}
/**
* 随机出生日期
* @return
*/
public String randomBirthday() {
Calendar birthday = Calendar.getinstance();
birthday.set(Calendar.YEAR, (int) (Math.random() * 60) + 1950);
birthday.set(Calendar.MONTH, (int) (Math.random() * 12));
birthday.set(Calendar.DATE, (int) (Math.random() * 31));
StringBuilder builder = new StringBuilder();
builder.append(birthday.get(Calendar.YEAR));
long month = birthday.get(Calendar.MONTH) + 1;
if (month < 10) {
builder.append("0");
}
builder.append(month);
long date = birthday.get(Calendar.DATE);
if (date < 10) {
builder.append("0");
}
builder.append(date);
return builder.toString();
}
/*
* <p>18位身份证验证</p>
* 根据〖中华人民共和国国家标准 GB 11643-1999〗中有关公民身份号码的规定,公民身份号码是特征组合码,由十七位数字本体码和一位数字校验码组成。
* 排列顺序从左至右依次为:六位数字地址码,八位数字出生日期码,三位数字顺序码和一位数字校验码。
* 第十八位数字(校验码)的计算方法为:
* 1.将前面的身份证号码17位数分别乘以不同的系数。从第一位到第十七位的系数分别为:7 9 10 5 8 4 2 1 6 3 7 9 10 5 8 4 2
* 2.将这17位数字和系数相乘的结果相加。
* 3.用加出来和除以11,看余数是多少?
* 4.余数只可能有0 1 2 3 4 5 6 7 8 9 10这11个数字。其分别对应的最后一位身份证的号码为1 0 X 9 8 7 6 5 4 3 2。
* 5.通过上面得知如果余数是2,就会在身份证的第18位数字上出现罗马数字的Ⅹ。如果余数是10,身份证的最后一位号码就是2。
*/
public char calcTrailingNumber(char[] chars) {
if (chars.length < 17) {
return ' ';
}
int[] c = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 };
char[] r = { '1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2' };
int[] n = new int[17];
int result = 0;
for (int i = 0; i < n.length; i++) {
n[i] = Integer.parseInt(chars[i] + "");
}
for (int i = 0; i < n.length; i++) {
result += c[i] * n[i];
}
return r[result % 11];
}
/**
* 随机产生3位数
* @return
*/
public String randomCode() {
int code = (int) (Math.random() * 1000);
if (code < 10) {
return "00" + code;
} else if (code < 100) {
return "0" + code;
} else {
return "" + code;
}
}
/**
* 将数据写入txt文件
* @param filePath txt文件地址
* @param content 需要插入的内容
*/
public static void contentToTxt(String filePath, String content) {
try{
BufferedWriter writer = new BufferedWriter(new FileWriter(new File(filePath),true));
writer.write("\n"+content);
writer.close();
}catch(Exception e){
e.printstacktrace();
}
}
public static void main(String[] args) {
IdCardGenerator g = new IdCardGenerator();
for (int i = 0; i < 2000; i++) {//需要几个,就用几个for循环
contentToTxt("E:\\IdCardGenerator.txt",g.generate()); //将生成的身份证存入F下的IdCardGenerator.txt里面
}
}
}
相关阅读
前言大家都在看小说的把,小说有的名字温文尔雅,有的霸气侧漏,有的阴暗等你等,反正一个人的名字反应了这个是否活得久(
windows下使用FFmpeg生成PCM音频文件并播放(通过命令的
一、PCM文件的定义 PCM文件:模拟音频信号经模数转换(A/D变换)直接形成的二进制序列,该文件没有附加的文件头和文件结束标志。Windo
一、基本概念决策树的定义:首先,决策树是一种有监督的分类算法——即给定X,Y值,构建X,Y的映射关系。不同于线性回归等是多项式,决策树是
在上一讲中,我们是运用Mybatis插件进行代码生成,本次我们来自己写一个代码生成器。 主要任务:自写代码生成器 上一讲中,我们介绍了一
一个简单的姓名生成器 一个超简单又很实用的姓名生成器,代码是用JavaScript写的,很容易改成别的语言。 思路非常简单,代码及注释如