隨機生成驗證碼(由數字、大小寫字母組成)
阿新 • • 發佈:2019-01-30
隨機生成六位驗證碼
需要利用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;
}
第二種: 對照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 = (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
第一種程式碼量少,但是需要把每個字元都敲出來,有點麻煩;第二種程式碼量比第一種要多,而且耗費時間貌似也比第一個長一點,比較雞肋了。不過重在思考,幹這一行還是需要不斷探索的。第三種雖然程式碼量比第一種多,但是思路比第二種清晰,不需要一個一個把每個字元敲出來,直接用隨機數取出,不用費多大力氣。