生成随机数验证码

Posted Yuan丶野幻想

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成随机数验证码相关的知识,希望对你有一定的参考价值。

String[] strArray = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"};
int codeCount = 4;
StringBuffer code = new StringBuffer();
for(int i=0; i<codeCount; i++) {
  code.append(strArray[(int) (Math.random()*10)]);
}
System.out.println(code);

以上是关于生成随机数验证码的主要内容,如果未能解决你的问题,请参考以下文章

Python random随机生成6位验证码示例代码

Python random随机生成6位验证码示例代码

JSP 设计教师与学生不同登陆界面(带验证码)

PIL 生成随机验证码图片

web 动态随机验证码图片生成最新

Python生成随机验证码