登录时候输入验证码,验证码图片从服务器获取方法

登录时候输入验证码,验证码图片从服务器获取方法

小验证码图片 源码分享:http://pan.baidu.com/s/1skK7jRJ

展示效果:

登录时候输入验证码,验证码图片从服务器获取方法 - wangyue.123.com - moonstak

在这里插入图片描述

jsp页面:

<%@ page language=“java” import=“java.util.*” pageEncoding=“utf-8”%>

My JSP 'index.jsp' starting page 验证码: ![在这里插入图片描述](https://img-blog.csdnimg.cn/20191206111354505.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dhbmd5dWUyM2NvbQ==,size_16,color_FFFFFF,t_70)
${param.result eq 0 ?"验证码填写错误":"验证码填写正确"}

java后台代码:

public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {

//判断类型是获取验证码图片 还是验证提交的验证码
String type = request.getParameter(“type”);
int trueFlag = 0; //代表是否验证通过 1验证码正确 0验证码错误
if(“form”.equals(type)){
String authCode = (String)request.getSession().getAttribute(“authCode”);
String code = request.getParameter(“code”);
if(authCode.equals(code)){
trueFlag = 1;
}else{
trueFlag = 0;
}
}else if(“generateAuthCode”.equals(type)){
response.setHeader(“Pragma”, “No-cache”);
response.setHeader(“Cache-Control”, “no-cache”);
response.setDateHeader(“Expires”, 0L);

  int width = 60; int height = 20;
  BufferedImage image = new BufferedImage(width, height, 1);

  Graphics g = image.getGraphics();

  Random random = new Random();

  g.setColor(getRandColor(200, 250));
  g.fillRect(0, 0, width, height);

  g.setFont(new Font("Times New Roman", 0, 18));

  g.setColor(getRandColor(160, 200));
  for (int i = 0; i < 155; i++)
  {
    int x = random.nextInt(width);
    int y = random.nextInt(height);
    int xl = random.nextInt(12);
    int yl = random.nextInt(12);
    g.drawLine(x, y, x + xl, y + yl);
  }

  String sRand = "";
  for (int i = 0; i < 4; i++) {
    String rand = String.valueOf(random.nextInt(10));
    sRand = sRand + rand;

    g.setColor(new Color(20 + random.nextInt(110), 20 + random.nextInt(110), 20 + random.nextInt(110)));
    g.drawString(rand, 13 * i + 6, 16);
  }
  //将验证码保存服务器session中
  request.getSession().setAttribute("authCode", sRand);
 
  g.dispose();
  try
  {
   //将图片写入输入流
    ImageIO.write(image, "JPEG", response.getOutputStream());
  }
  catch (Exception localException1)
  {
  }

}
try{
//跳转回页面
response.sendRedirect(request.getContextPath()+"/index.jsp?result="+trueFlag);
}catch(Exception e){

}
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

wangyue23com

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值