关于随机数的生成请点击这里
需要利用Random生成伪随机数。
Random random = new Random();
random.nextInt();
char[] ch = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i',
'j', 'k','l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
将所有的字母和数字放在一个数组ch中,然后定义字符串str,用来存储每次获得的字母或数字。利用for循环六次,每次循环用Random的nextInt()方法取得一个随机数,区间为【0,ch.length),用作数组ch的下标。定义一个char类型存储在ch获得的元素,然后拼接到str中。
for (int i = 0; i <6; i++){
char num = ch[random.nextInt(ch.length)];
str += num;
}
感觉跟第一种差不多,逆过来操作一下。这次直接从48到122(ASCII中的0~Z)中取随机数,然后将用不到的字符对应的十进制挑出来放在一个字符数组中:
char[] set = {91,92,93,94,95,96,58,59,60,61,62,63,64};//没有用的字符
首先取随机数,然后通过for循环判断set数组中有无和a相等的元素,需要定义一个boolean类型的变量,
boolean flag = true;
如果有,则flag = false;如果没有,判断flag,为true则将a转换成对应的字符,然后拼接字符串。最外面用while循环来判断str的长度是否为6。
while (str.length() != 6){
boolean flag = true;
int a = (random.nextInt(75) + 48);
for (int j = 0; j < set.length; j++){
if (a == set[j]){
flag = false;
}
}
if (flag){
char ch = (char) a;
str += ch;
}
}
用for循环来限制取六次随机数,循环里面用switch把数字、大写字母、小写字母的情况列出,分别用0,1,2表示。用Random来随机每次是哪种情况,定义int型变量key来接收。
for (int i = 0; i < 6; i++){
int key = random.nextInt(3);
switch (key){
case 0:
int code1 = random.nextInt(10);
str += code1;
break;
case 1:
char code2 = (char)(random.nextInt(26)+65);
str += code2;
break;
case 2:
char code3 = (char)(random.nextInt(26)+97);
str += code3;
break;
}
第一种:
public static String verifyCode(){
String str = "";
char[] ch = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
Random random = new Random();
for (int i = 0; i <6; i++){
char num = ch[random.nextInt(ch.length)];
str += num;
}
return str;
}
第二种:
public static String verifyCode(){
Random random = new Random();
char[] set = {91,92,93,94,95,96,58,59,60,61,62,63,64};
String str = "";
while (str.length() != 6){
boolean flag = true;
int a = (random.nextInt(75) + 48);
for (int j = 0; j < set.length; j++){
if (a == set[j]){
flag = false;
}
}
if (flag){
char ch = (char) a;
//System.out.println(a);
str += ch;
}
}
return str;
}
第三种:
public static String verifyCode() {
Random random = new Random();
String str = "";
for (int i = 0; i < 6; i++){
int key = random.nextInt(3);
switch (key){
case 0:
int code1 = random.nextInt(10);
str += code1;
break;
case 1:
char code2 = (char)(random.nextInt(26)+65);
str += code2;
break;
case 2:
char code3 = (char)(random.nextInt(26)+97);
str += code3;
break;
}
}
return str;
}
主方法:
public class Texst {
public static void main(String[] args){
for (int i = 0; i < 10; i++){
System.out.println("随机验证码:"+verifyCode());
}
}
。。。
。。。
。。。
}
结果:
随机验证码:z80W72
随机验证码:yUkugX
随机验证码:mc2im3
随机验证码:o0BO1H
随机验证码:6Vp3u5
随机验证码:y4RtoL
随机验证码:LryOUa
随机验证码:gb43yi
随机验证码:H0TW22
随机验证码:V9r52U
第一种代码量少,但是需要把每个字符都敲出来,有点麻烦;第二种代码量比第一种要多,而且耗费时间貌似也比第一个长一点,比较鸡肋了。不过重在思考,干这一行还是需要不断探索的。第三种虽然代码量比第一种多,但是思路比第二种清晰,不需要一个一个把每个字符敲出来,直接用随机数取出,不用费多大力气。