10 2013 档案

摘要:/** * 获取指定长度随机简体中文 * @param len int * @return String */ public static String getRandomJianHan(int len) { String ret=""; for(int i=0;i<len;i++){ String str = null; int hightPos, lowPos; // 定义高低位 Random random = new Random(); hightPos = (176 + Math.abs(random.nextInt(39))); //获取高位值 lowPos 阅读全文
posted @ 2013-10-10 15:14 jack_ou 阅读(6779) 评论(0) 推荐(0) 编辑