java生成随机中文,java随机生成汉语

java随机生成中文

import java.io.UnsupportedEncodingException;

import java.util.Date;

import java.util.Random;

public class ChineseUtils {

private static Random random = null;

private static Random getRandomInstance() {

if (random == null) {

random = new Random(new Date().getTime());

}

return random;

}

public static String getChinese() {

String str = null;

int highPos, lowPos;

Random random = getRandomInstance();

highPos = (176 + Math.abs(random.nextInt(39)));

lowPos = 161 + Math.abs(random.nextInt(93));

byte[] b = new byte[2];

b[0] = (new Integer(highPos)).byteValue();

b[1] = (new Integer(lowPos)).byteValue();

try {

str = new String(b, "GB2312");

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

}

return str;

}

public static String getFixedLengthChinese(int length) {

String str = "";

for (int i = length; i > 0; i--) {

str = str + ChineseUtils.getChinese();

}

return str;

}

public static String getRandomLengthChiness(int start, int end) {

String str = "";

int length = new Random().nextInt(end + 1);

if (length < start) {

str = getRandomLengthChiness(start, end);

} else {

for (int i = 0; i < length; i++) {

str = str + getChinese();

}

}

return str;

}

public static void main(String args[]) {

System.out.println(ChineseUtils.getChinese());

System.out.println(ChineseUtils.getFixedLengthChinese(20));

System.out.println(ChineseUtils.getRandomLengthChiness(2, 5));

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值