开发一个程序,可以生成指定位数的验证码,每位可以是数字、大小写字母。
package com.itheima.yunma;
import java.util.Random;
public class Test2 {
public static void main(String[] args) {
System.out.println(createCode(5));//n任意调节验证码长度
}
public static String createCode(int n){
//n:要产生多少位验证码
Random r = new Random();
String code = "";
for (int i=1;i<=n;i++){
int type = r.nextInt(3);// 只要0 1 2 ,分别代表数字,大写字母,小写字母
switch(type){
case 0:
code+=r.nextInt(10);
break;
case 1:
//大写A=65 Z=65+25
char ch1 = (char) (r.nextInt(26)+65);// 快捷转换类型 ---alt+回车
code+=ch1;
break;
case 2:
//小写a=97 z=97+25
char ch2 = (char) (r.nextInt(26)+97);
code+=ch2;
break;
}
}
return code;
}
}