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

验证码

时间:2017-10-08 16:58:06      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:vco   ima   equal   截图   input   nbsp   通过   dom   .com   

1.设计思路

利用random和循环生成随机六位字符串作为验证码,然后根据提示输入,接着判断是否正确。

2.流程图

技术分享

3.源代码

import javax.swing.JOptionPane;
public class Vcode
{
public static void main(String[] args)
{
String result = "";
for(int i = 0 ; i < 6 ; i ++)
{
int intVal = (int)(Math.random() * 26 + 97);
result = result + (char)intVal;
}
String code;
code=JOptionPane.showInputDialog(result+"\n请输入验证码");
if(code.equals(result))
{
JOptionPane.showMessageDialog(null,"验证通过","验证结果",JOptionPane.PLAIN_MESSAGE);
}
else
{
JOptionPane.showMessageDialog(null,"验证失败","验证结果",JOptionPane.PLAIN_MESSAGE);
}

}

}

 

4.截图

技术分享

技术分享

 

验证码

标签:vco   ima   equal   截图   input   nbsp   通过   dom   .com   

原文地址:http://www.cnblogs.com/sakura--/p/7637737.html

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