码迷,mamicode.com
首页 > 其他好文 > 详细

请输入验证码优化版

时间:2015-10-13 10:35:28      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

 1            String str111 = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
 2            
 3            for(int x = 1; x <= 4; x++)
 4            {
 5                Random a = new Random();
 6               
 7                int m = a.nextInt(62);
 8               
 9                System.out.print(str111.charAt(m) + " ");
10            }
11            System.out.println();
12            System.out.println("请输入验证码:");

 

请输入验证码优化版

标签:

原文地址:http://www.cnblogs.com/wgbs25673578/p/4873521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!