生成随机姓名
Posted li19941999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成随机姓名相关的知识,希望对你有一定的参考价值。
public class Demo {
@Test
public void test01() throws UnsupportedEncodingException{
Random r=new Random();
for(int i=0 ;i<100;i++){
StringBuffer name=new StringBuffer();
for(int j=0;j<2;j++){
Integer a=r.nextInt(39)+176;
Integer b=r.nextInt(93)+161;
byte[] arr={a.byteValue(),b.byteValue()};
name=name.append(new String(arr,"GBK"));
}
System.out.println(name);
}
}
}
以上是关于生成随机姓名的主要内容,如果未能解决你的问题,请参考以下文章