生成指定位数的验证码,每位可以是数字、大小写字母。
import java.util.Random;
public class authCode {
public static void main(String[] args) {
String[] content = {"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"};
String s = passWord(content, 5);//定义验证码位数
System.out.println(s);
}
public static String passWord(String[] content,int n){
Random r = new Random();
String aa = "";
for (int i = 0; i < n; i++) {
int a = r.nextInt(content.length);
aa+=content[a];
}
return aa;
}
}
运行结果: