博客
关于我
Java随机生成n位验证码
阅读量:801 次
发布时间:2023-01-29

本文共 1056 字,大约阅读时间需要 3 分钟。

Java随机验证码生成实现

在今天的学习中,我实现了一个随机生成验证码的功能,验证码长度可以是4位或6位,包含字母、大小写和数字。以下是代码和运行结果的展示:


代码示例

package com.itheima.hello;
public class ScannerDemo1 {
public static void main(String[] args) {
System.out.println(getCode(4));
System.out.println(getCode(6));
}
public static String getCode(int n) {
StringBuilder code = new StringBuilder();
for (int i = 0; i < n; i++) {
// 随机选择字符类型
int type = (int) Math.floor(Math.random() * 3);
switch(type) {
case 0: // 字母(大写)
code.append(ABCDEFGHIJKLMNOPQRSTUVWXYZ.charAt(Math.random() * 26));
break;
case 1: // 字母(小写)
code.append(abcdefghijklmnopqrstuvwxyz.charAt(Math.random() * 26));
break;
case 2: // 数字
code.append(String.valueOf(Math.random() * 10).charAt(0));
break;
}
}
return code.toString();
}
}

运行结果

运行代码后,随机生成的4位验证码为:7Q33

随机生成的6位验证码为:0FIiwD

转载地址:http://ytryk.baihongyu.com/

你可能感兴趣的文章
Nginx 配置解析:从基础到高级应用指南
查看>>
Nginx 集成Zipkin服务链路追踪
查看>>
nginx 集群配置方式 静态文件处理
查看>>
nginx+mysql+redis+mongdb+rabbitmq 自动化部署脚本
查看>>
nginx+php的搭建
查看>>
nginx+tomcat+memcached
查看>>
Nginx+Tomcat实现动静分离
查看>>
nginx+Tomcat性能监控
查看>>
nginx+uwsgi+django
查看>>
nginx+vsftp搭建图片服务器
查看>>
Nginx-http-flv-module流媒体服务器搭建+模拟推流+flv.js在前端html和Vue中播放HTTP-FLV视频流
查看>>
nginx-vts + prometheus 监控nginx
查看>>
nginx: [emerg] getpwnam(“www”) failed 错误处理方法
查看>>
nginx: [emerg] the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:
查看>>
nginx:Error ./configure: error: the HTTP rewrite module requires the PCRE library
查看>>
Nginx、HAProxy、LVS
查看>>
Nginx下配置codeigniter框架方法
查看>>
Nginx中使用expires指令实现配置浏览器缓存
查看>>
Nginx之二:nginx.conf简单配置(参数详解)
查看>>
Nginx从入门到精通
查看>>