要求
1.输入手机号,随机生成6位验证码,2分钟有效 2.验证验证码,返回成功或失败 3.每个手机一天只能发送三次
实现过程
1.随机生成验证码,(使用Random类)
public static String getCode() {
Random random=new Random();
String code="";
for(int i=0;i<6;i++) {
int rand=random.nextInt(10);
code+=rand;
}
return code;
}
2.将验证码放到redis中,设置过期时间,设置三次以后不能再继续访问
public static void verifyCode(String phone) {
Jedis jedis=new Jedis("服务器的ip地址",6379);
String countKey=null;
String codeKey=null;
String count=jedis.get(countKey);
if(count==null) {
jedis.setex(countKey,24*60*60,"1");
}
else if(Integer.parseInt(count)<=2) {
jedis.incr(countKey);
}
else {
System.out.println("今天发送次数已经超过三次");
jedis.close();
return ;
}
String vcode=getCode();
jedis.setex(codeKey,120,vcode);
jedis.close();
}
3.校验验证码
public static void getRedisCode(String phone,String code) {
Jedis jedis=new Jedis("服务器IP地址",6379);
String codeKey="code";
String redisCode=jedis.get(codeKey);
if(redisCode.equals(code)) {
System.out.println("成功");
}
else {
System.out.println("失败");
}
jedis.close();
}
运行
1.先输入手机号 然后进入到Xshell里,使用get语句,得到验证码
然后注释掉verifyCode(“18291346654”);防止它重新发送验证码,调用校验验证码函数完成校验
最后得到结果
|