首页 > 代码库 > java 中生成随机验证码

java 中生成随机验证码

1.导包

技术分享

2.

public void generateVCode() throws FileNotFoundException, IOException
	{
		VerifyCode verifyCode=new VerifyCode();
		BufferedImage bi=verifyCode.getImage();
		System.out.println(verifyCode.getText());
		VerifyCode.output(bi, new FileOutputStream("E:/a.jpg"));
	}

  

java 中生成随机验证码