RandomUtils
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RandomUtils相关的知识,希望对你有一定的参考价值。
package com.cc.hkjc.util;
import java.util.Random;
public class RandomUtils {
/**
* 获取count个随机数
* @param count 随机数个数
* @return
*/
public static String game(int count){
StringBuffer sb = new StringBuffer();
String str = "0123456789";
Random r = new Random();
for(int i=0;i<count;i++){
int num = r.nextInt(str.length());
sb.append(str.charAt(num));
str = str.replace((str.charAt(num)+""), "");
}
return sb.toString();
}
//测试方法-随机显示4为数字
public static void main(String[] args) {
System.out.println(RandomUtils.game(4));
}
}
以上是关于RandomUtils的主要内容,如果未能解决你的问题,请参考以下文章