随机⽣成验证码(由数字、⼤⼩写字母组成)
随机⽣成六位验证码
需要利⽤Random⽣成伪随机数。
Random random = new Random();
第⼀种:给定全部的字符数组
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 = Int(ch.length)];
str += num;
}
第⼆种:对照ASCII码表挑出不需要的字符
感觉跟第⼀种差不多,逆过来操作⼀下。这次直接从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 = (Int(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 = Int(3);
switch (key){
case 0:
int code1 = Int(10);
str += code1;
break;
case 1:
char code2 = (char)(Int(26)+65);
str += code2;
break;
case 2:
char code3 = (char)(Int(26)+97);
str += code3;
nextint()方法
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 = Int(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 = (Int(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 = Int(3);
switch (key){
case 0:
int code1 = Int(10);
str += code1;
break;
case 1:
char code2 = (char)(Int(26)+65);
str += code2;
break;
case 2:
char code3 = (char)(Int(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
第⼀种代码量少,但是需要把每个字符都敲出来,有点⿇烦;第⼆种代码量⽐第⼀种要多,⽽且耗费时间貌似也⽐第⼀个长⼀点,⽐较鸡肋了。不过重在思考,⼲这⼀⾏还是需要不断探索的。第三种虽然代码量⽐第⼀种多,但是思路⽐第⼆种清晰,不需要⼀个⼀个把每个字符敲出来,直接⽤随机数取出,不⽤费多⼤⼒⽓。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。