linux ssh 验证码登录,基于SSH框架下登录验证码模块的实现

记录基于SSH框架下登录验证码模块的实现过程步骤。

1、前端页面代码:

主要以jQuery的ajax异步请求实现。

...

$(function () {

//验证码图片刷新

$("#vcode").click(function () {

$(this).prop("src","${pageContext.request.contextPath }/user_createVerificationCode?"+new Date());

});

//验证码校验

$("#txtcode").blur(function () {

var url = "${pageContext.request.contextPath }/user_checkVerificationCode"

var code = $(this).val();

$.get(url,{"code":code},function (result) {

if(result != ""){

$("#tip").html(result);

//验证码错误,登录按钮失效

$("#btn").prop("disabled","disabled");

}else{

$("#tip").html("");

$("#btn").removeAttr("disabled");

}

});

});

})

...

验证码: user_createVerificationCode 

...

2、struts.xml

3、applicationContext.xml

80

20

4

10

4、Action.java

public class UserAction extends ActionSupport implements ModelDriven{private String code;

public String getCode() { return code;}

public void setCode(String code) {this.code = code;}

private ValidateCode validateCode;

public void setValidateCode(ValidateCode validateCode) {

this.validateCode = validateCode;

}

public String createVerificationCode(){

String vcode = validateCode.getCode ();

HttpSession session = ServletActionContext.getRequest().getSession();

session.setAttribute("vcode",vcode);

try {

validateCode.write (ServletActionContext.getResponse().getOutputStream ());//将服务器生成的验证码,以流的形式写给客户端(变成图片)

} catch (IOException e) {

e.printStackTrace();

}

return NONE;

}

public String checkVerificationCode() throws IOException {

HttpSession session = ServletActionContext.getRequest().getSession();

String vcode = (String) session.getAttribute("vcode");

if (!code.equalsIgnoreCase(vcode)){

HttpServletResponse response = ServletActionContext.getResponse();

response.setContentType("text/html;charset=utf-8");

response.getWriter().println("验证码输入有误!");

}else{

HttpServletResponse response = ServletActionContext.getResponse();

response.setContentType("text/html;charset=utf-8");

response.getWriter().print("");

}

return NONE;

}

}

5、ValidateCode.java

package cn.dsna.util.images;

import java.awt.Color;

import java.awt.Font;

import java.awt.Graphics2D;

import java.awt.image.BufferedImage;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.OutputStream;

import java.util.Random;

import javax.imageio.ImageIO;

public class ValidateCode {

private int width = 160;

private int height = 40;

private int codeCount = 5;

private int lineCount = 150;

private String code = null;

private BufferedImage buffImg = null;

private char[] codeSequence = new char[]{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '1', '2', '3', '4', '5', '6', '7', '8', '9'};

public ValidateCode() {

this.createCode();

}

public ValidateCode(int width, int height) {

this.width = width;

this.height = height;

this.createCode();

}

public ValidateCode(int width, int height, int codeCount, int lineCount) {

this.width = width;

this.height = height;

this.codeCount = codeCount;

this.lineCount = lineCount;

this.createCode();

}

public void createCode() {

int x = false;

int fontHeight = false;

int codeY = false;

int red = false;

int green = false;

int blue = false;

int x = this.width / (this.codeCount + 2);

int fontHeight = this.height - 2;

int codeY = this.height - 4;

this.buffImg = new BufferedImage(this.width, this.height, 1);

Graphics2D g = this.buffImg.createGraphics();

Random random = new Random();

g.setColor(Color.WHITE);

g.fillRect(0, 0, this.width, this.height);

ImgFontByte imgFont = new ImgFontByte();

Font font = imgFont.getFont(fontHeight);

g.setFont(font);

int i;

int red;

int green;

int blue;

for(int i = 0; i < this.lineCount; ++i) {

i = random.nextInt(this.width);

int ys = random.nextInt(this.height);

int xe = i + random.nextInt(this.width / 8);

int ye = ys + random.nextInt(this.height / 8);

red = random.nextInt(255);

green = random.nextInt(255);

blue = random.nextInt(255);

g.setColor(new Color(red, green, blue));

g.drawLine(i, ys, xe, ye);

}

StringBuffer randomCode = new StringBuffer();

for(i = 0; i < this.codeCount; ++i) {

String strRand = String.valueOf(this.codeSequence[random.nextInt(this.codeSequence.length)]);

red = random.nextInt(255);

green = random.nextInt(255);

blue = random.nextInt(255);

g.setColor(new Color(red, green, blue));

g.drawString(strRand, (i + 1) * x, codeY);

randomCode.append(strRand);

}

this.code = randomCode.toString();

}

public void write(String path) throws IOException {

OutputStream sos = new FileOutputStream(path);

this.write((OutputStream)sos);

}

public void write(OutputStream sos) throws IOException {

ImageIO.write(this.buffImg, "png", sos);

sos.close();

}

public BufferedImage getBuffImg() {

return this.buffImg;

}

public String getCode() {

return this.code;

}

}

效果显示:

985c3dda8dd168f7db47f7c46071fbe7.png

0b1331709591d260c1c78e86d0c51c18.png

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值