Java验证码程序
Posted peanut
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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、实验总结
通过上网查询以及运用课件代码成功地生成了随机验证码,并且使程序成功运行
以上是关于Java验证码程序的主要内容,如果未能解决你的问题,请参考以下文章