验证码
Posted 但为君故。
tags:
篇首语:本文由小常识网(cha138.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.截图
以上是关于验证码的主要内容,如果未能解决你的问题,请参考以下文章