Java验证码程序

1、设计思想

利用random和for循环进行程序的实现

2、流程图

3、源代码

import javax.swing.JOptionPane;
public class jiemiansheji
{
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 str;
str=JOptionPane.showInputDialog("输入验证码\n"+result);
if(str.equals(result))
{
JOptionPane.showMessageDialog(null,"验证成功","",JOptionPane.PLAIN_MESSAGE);
}
else
{
JOptionPane.showMessageDialog(null,"验证失败","",JOptionPane.PLAIN_MESSAGE);



}
}
}

4、实验截图

5、实验总结

通过上网查询以及运用课件代码成功地生成了随机验证码,并且使程序成功运行

 

posted @ 2017-10-08 17:10  风沙迷住了眼  阅读(146)  评论(0编辑  收藏  举报