Java生成随机数 一、使用math方法,Math.random()随机生成一个double类型[0,1)
int num = (int)(Math.random()*99);
二、使用Random方法生成随机数
public static void testRandom() {
Random random = new Random();
random.setSeed(100L);
for(int i = 0 ; i < 10 ; i ++) {
System.out.println(random.nextInt(100));
}
System.out.println("以下为输出的随机数:");
random = new Random();
random.setSeed(100L);
for(int i = 0 ; i < 10 ; i ++) {
System.out.println(random.nextInt(100));
}
}
三、使用SecureRandom生成随机数
public static void testSecureRandom() {
SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
secureRandom.setSeed(100L);
for(int i = 0 ; i < 10 ; i ++) {
System.out.println(secureRandom.nextInt(100));
}
System.out.println("-------------------");
secureRandom = new SecureRandom();
secureRandom.setSeed(100L);
for(int i = 0; i < 10 ; i ++) { System.out.println(secureRandom.nextInt(100));
}
}
使用Random可以获取随机数时,很多公司会禁止使用java.util.Random,是为了程序的安全性,建议使用SecureRandom比较好,SecureRandom获取加密安全的伪随机数的生成器,方便安全敏感的应用程序。
|