在登录注册页面中,除了用户名和密码外,通常也会包含验证码。
验证码是用来区分用户是计算机还是人,防止恶意破解密码、刷票、灌水等行为。
在判断验证码时一般不区分大小写。
请编写程序模拟验证码的判断过程,如果输入正确,给出提示,结束程序。
如果输入错误,给出提示,验证码刷新,重新输入,直至正确为止。
(1)生成一个验证码给用户看,验证码4位的验证码,每一位都有可能是小写字母、大写字母、数字这三种情况
tyH2 gh5D jxB5 hG9H
(2)用户输入一个验证码
(3)将用户输入的验证码和你产生的验证码进行比对
(4)比对通过:允许登录
比对不通过:重新刷新验证码,再让用户输入,直到输入成功为止
忽略大小写 忽略前后中间空格
示例代码:
public class HomeworkTest02 { public static void main(String[] args) { //1、生成一个验证码给用户看 String checkCode = getCheckCode(); System.out.println("验证码为:" + checkCode); //2、用户输入一个验证码 Scanner s = new Scanner(System.in); System.out.println("请输入验证码:"); //3、用户输入验证码进行比对 while(true) { String userCheckCode = s.nextLine();//应对用户输入空格 userCheckCode = userCheckCode.replaceAll(" ", "");//把用户输入的空格替换成空字符串 //4、比对通过允许登录 if (userCheckCode.equalsIgnoreCase(checkCode)) { System.out.println("登陆成功!"); break; } else { System.out.println("验证码错误,请重新输入!"); checkCode = getCheckCode(); System.out.println("验证码为:" + checkCode); } } } public static String getCheckCode(){ //随机生成数字 String str = ""; for(char c='A';c<='Z';c++){ str += c; } for(char c='a';c<='z';c++){ str += c; } for(char c='0';c<='9';c++){ str += c; } //System.out.println(str); //生成四个随机数 Random random = new Random(); String checkCode = ""; //循环四次,得到四个随机数 for(int i=0;i<4;i++){ int index = random.nextInt(str.length());//拿到随机数下标,然后进行随机数字符串拼接 char c = str.charAt(index); checkCode += c; } return checkCode; } }
运行结果: