java中随机生成汉字

Posted 幽雨_rain

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中随机生成汉字相关的知识,希望对你有一定的参考价值。

main方法中使用:

//随机生成100个汉字

String ss="";
for(int i=0;i<100;i++){
ss+=getChinese(i);
}
System.out.println(ss);

结果如图:

//随机生成汉字
//seed指定Random(long seed)中的种子数
public static String getChinese(long seed)
throws UnsupportedEncodingException
{
String str=null;
int highpos,lowpos;
Random random=new Random(seed);
highpos=(176+Math.abs(random.nextInt(39)));
lowpos=(161+Math.abs(random.nextInt(93)));
byte[] bb=new byte[2];
bb[0]=new Integer(highpos).byteValue();
bb[1]=new Integer(lowpos).byteValue();
//String(byte[] bytes, Charset charset)
//通过使用指定的 charset 解码指定的 byte 数组,构造一个新的 String。
str=new String(bb,"GBK");
return str;
}

这里有个关于讲解汉字区位码以及GB2312的背景知识,感兴趣的可以参考一下,里面有个利用c#程序编写的汉字生成器.

链接:http://www.cnblogs.com/skyivben/archive/2012/10/20/2732484.html

以上是关于java中随机生成汉字的主要内容,如果未能解决你的问题,请参考以下文章

java生成随机汉字

Java随机生成常用汉字验证码

EasyClick 随机生成汉字

android生成随机汉字

php随机生成汉字

python 随机生成汉字