实验一任务四:验证码问题

Posted 孟庆淋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验一任务四:验证码问题相关的知识,希望对你有一定的参考价值。

package shiyansi;

import javax.swing.JOptionPane;
public class RandomStr {

public static void main(String[] args) {
// TODO 自动生成的方法存根
//定义一个空字符串

String result = "",first;
int number1,number2;
//进行6次循环
for(int i = 0 ; i < 6 ; i ++)
{
//生成一个97~122的int型的整数
int intVal = (int)(Math.random() * 26 + 97);

//将intValue强制转换为char后连接到result后面
result = result + (char)intVal;
}

first =
JOptionPane.showInputDialog( "The code is:"+result);


if(first.equals(result))//判断是否输入正确正确输出Success错误输出Error
{
JOptionPane.showMessageDialog(
null, "Success! "

);
System.exit( 0 ); //退出程序
}
else
{
JOptionPane.showMessageDialog(
null, "Error!"

);
System.exit( 0 ); //退出程序
}

}

}

以上是关于实验一任务四:验证码问题的主要内容,如果未能解决你的问题,请参考以下文章

实验任务四:随机验证码的生成

实验任务实验任务五

接单日记验证码图片生成

实验任务四:实现登陆界面

实验任务四-实现登陆界面的内容

实验四验证码