一、工具类
public class getVerificationCode { /** * 数字随机验证码 * @return */ public static String getNumber(){ String code = ""; for (int i = 0; i < 4; i++) { code = code + (int)(Math.random() * 9); } return code; } /** * 字母+数字 随机验证码 * @return */ public static String getLetter(){ String code = ""; char[] ch = {'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','0','1','2','3','4','5','6','7','8','9'}; for (int i = 0; i < 4; i++) { int index = (int)(Math.random() * ch.length); code = code + ch[index]; } return code; } /** * 汉字随机验证码 * @return */ public static String getChineseCharacter(){ String code = ""; char[] ch = {'没','有','肉','体','的','摩','擦','哪','来','爱','情','的','火','花','没','有', '疯','狂','的','接','吻','哪','来','床','上','的','翻','滚'}; for (int i = 0; i < 4; i++) { int index = (int)(Math.random() * ch.length); code = code + ch[index]; } return code; }
二、测试
main方法直接测试
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/119910.html