一、定义实体类Person,封装生成的数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
package net.dc.test;
public class Person {
private String name;
private String sex;
private int age;
public String getName() {
return name;
}
public void setName(String name) {
this .name = name;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this .sex = sex;
}
public int getAge() {
return age;
}
public void setAge( int age) {
this .age = age;
}
@Override
public String toString() {
return "Person{" +
"name='" + name + '\ '' +
", sex='" + sex + '\ '' +
", age=" + age +
'}' ;
}
}
|
二、定义随机信息类RandInfo,生成随机数据
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
package net.dc.test;
import java.util.Random;
public class RandInfo {
String familyName = "赵钱孙李周吴郑王冯陈褚卫蒋沈韩杨朱秦尤许何吕施张孔曹严华金魏陶姜戚谢邹喻水云苏潘葛奚范彭郎鲁韦昌马苗凤花方俞任袁柳鲍史唐费岑薛雷贺倪汤滕殷罗毕郝邬安常乐于时傅卞齐康伍余元卜顾孟平"
+ "黄和穆萧尹姚邵湛汪祁毛禹狄米贝明臧计成戴宋茅庞熊纪舒屈项祝董粱杜阮席季麻强贾路娄危江童颜郭梅盛林刁钟徐邱骆高夏蔡田胡凌霍万柯卢莫房缪干解应宗丁宣邓郁单杭洪包诸左石崔吉"
+ "龚程邢滑裴陆荣翁荀羊甄家封芮储靳邴松井富乌焦巴弓牧隗山谷车侯伊宁仇祖武符刘景詹束龙叶幸司韶黎乔苍双闻莘劳逄姬冉宰桂牛寿通边燕冀尚农温庄晏瞿茹习鱼容向古戈终居衡步都耿满弘国文东殴沃曾关红游盖益桓公晋楚闫" ;
String firstName2 = "欧阳太史端木上官司马东方独孤南宫万俟闻人夏侯诸葛尉迟公羊赫连澹台皇甫宗政濮阳公冶太叔申屠公孙慕容仲孙钟离长孙宇文司徒鲜于司空闾丘子车亓官司寇巫马公西颛孙壤驷公良漆雕乐正宰父谷梁拓跋夹谷轩辕令狐段干百里呼延东郭南门羊舌微生公户公玉公仪梁丘公仲公上公门公山公坚左丘公伯西门公祖第五公乘贯丘公皙南荣东里东宫仲长子书子桑即墨达奚褚师吴铭" ;
String girlName = "秀娟英华慧巧美娜静淑惠珠翠雅芝玉萍红娥玲芬芳燕彩春菊兰凤洁梅琳素云莲真环雪荣爱妹霞香月莺媛艳瑞凡佳嘉琼勤珍贞莉桂娣叶璧璐娅琦晶妍茜秋珊莎锦黛青倩婷姣婉娴瑾颖露瑶怡婵雁蓓纨仪荷丹蓉眉君琴蕊薇菁梦岚苑婕馨瑗琰韵融园艺咏卿聪澜纯毓悦昭冰爽琬茗羽希宁欣飘育滢馥筠柔竹霭凝晓欢霄枫芸菲寒伊亚宜可姬舒影荔枝思丽" ;
String boyName = "伟刚勇毅俊峰强军平保东文辉力明永健世广志义兴良海山仁波宁贵福生龙元全国胜学祥才发武新利清飞彬富顺信子杰涛昌成康星光天达安岩中茂进林有坚和彪博诚先敬震振壮会思群豪心邦承乐绍功松善厚庆磊民友裕河哲江超浩亮政谦亨奇固之轮翰朗伯宏言若鸣朋斌梁栋维启克伦翔旭鹏泽晨辰士以建家致树炎德行时泰盛雄琛钧冠策腾楠榕风航弘" ;
public String randFamilyName() {
String str = "" ;
int strLen;
int randNum = new Random().nextInt( 2 ) + 1 ;
int index;
if (randNum == 1 ) {
strLen = familyName.length();
index = new Random().nextInt(strLen);
str = String.valueOf(familyName.charAt(index));
} else {
strLen = firstName2.length();
index = new Random().nextInt(strLen);
if (index % 2 == 0 ) {
str = firstName2.substring(index, index + 2 );
} else {
str = firstName2.substring(index - 1 , index + 1 );
}
}
return str;
}
public String randSex() {
int randNum = new Random().nextInt( 2 ) + 1 ;
return randNum == 1 ? "男" : "女" ;
}
public String randName(String sex) {
String name = "" ;
int randNum = new Random().nextInt( 2 ) + 1 ;
int index;
if (sex.equals( "男" )) {
int strLen = boyName.length();
if (randNum % 2 == 0 ) {
index = new Random().nextInt(strLen - 1 );
name = boyName.substring(index, index + randNum).concat( "-男" );
} else {
index = new Random().nextInt(strLen);
name = boyName.substring(index, index + randNum).concat( "-男" );
}
} else {
int strLen = girlName.length();
if (randNum % 2 == 0 ) {
index = new Random().nextInt(strLen - 1 );
name = girlName.substring(index, index + randNum).concat( "-女" );
} else {
index = new Random().nextInt(strLen);
name = girlName.substring(index, index + randNum).concat( "-女" );
}
}
return name;
}
public int randAge() {
return new Random().nextInt( 4 ) + 18 ;
}
}
|
三、定义测试类TestRand,进行测试
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package net.dc.test;
public class TestRand {
public static void main(String[] args) {
Person person = new Person();
RandInfo randInfo = new RandInfo();
for ( int i = 0 ; i < 10 ; i++) {
// 姓氏随机生成
String familyName = randInfo.randFamilyName();
// 名字依托于性别产生
String randName = randInfo.randName(randInfo.randSex());
String[] fixed = randName.split( "-" );
String name = fixed[ 0 ];
String sex = fixed[ 1 ];
int age = randInfo.randAge();
person.setName(familyName.concat(name));
person.setSex(sex);
person.setAge(age);
System.out.println(person);
}
}
}
|
测试结果:
到此这篇关于Java生成随机姓名、性别和年龄的实现示例的文章就介绍到这了,更多相关Java生成随机姓名、性别和年龄内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/yeyu_xing/article/details/108844330