驗證碼模塊化安裝

最近在完成一個基于SSH(struts+spring+hibernate)組合框架集成的J2EE商城項目

在完成登錄注冊時需要集成驗證碼功能,所以記下模塊化集成驗證碼的步驟:

1.創(chuàng)建一個畫布

2.設置一個畫筆

3.生成四個隨機的字母或數(shù)字

4.將四個字母或數(shù)字寫到圖片上.

5.將圖片輸出到瀏覽器.

*編寫一個Action類,生成驗證碼

創(chuàng)建一個CheckImgAction類


package cn.itcast.shop.user;

import java.awt.Color;

import java.awt.Font;

import java.awt.Graphics;

import java.awt.Graphics2D;

import java.awt.image.BufferedImage;

import java.util.Random;

import javax.imageio.ImageIO;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

/**

* 驗證碼程序

* @author 喻可偉

*

*/

public class CheckImgAction extends ActionSupport {

@Override

public String execute() throws Exception {

int width = 120;

int height = 30;

// 步驟一 繪制一張內(nèi)存中圖片

BufferedImage bufferedImage = new BufferedImage(width, height,

BufferedImage.TYPE_INT_RGB);

// 步驟二 圖片繪制背景顏色 ---通過繪圖對象

Graphics graphics = bufferedImage.getGraphics();// 得到畫圖對象 --- 畫筆

// 繪制任何圖形之前 都必須指定一個顏色

graphics.setColor(getRandColor(200, 250));

graphics.fillRect(0, 0, width, height);

// 步驟三 繪制邊框

graphics.setColor(Color.WHITE);

graphics.drawRect(0, 0, width - 1, height - 1);

// 步驟四 四個隨機數(shù)字

Graphics2D graphics2d = (Graphics2D) graphics;

// 設置輸出字體

graphics2d.setFont(new Font("宋體", Font.BOLD, 18));

String words = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";



Random random = new Random();// 生成隨機數(shù)

// 定義StringBuffer

StringBuffer sb = new StringBuffer();

// 定義x坐標

int x = 10;

for (int i = 0; i < 4; i++) {

// 隨機顏色

graphics2d.setColor(new Color(20 + random.nextInt(110), 20 + random

.nextInt(110), 20 + random.nextInt(110)));

// 旋轉 -30 --- 30度

int jiaodu = random.nextInt(60) - 30;

// 換算弧度

double theta = jiaodu * Math.PI / 180;

// 生成一個隨機數(shù)字

int index = random.nextInt(words.length()); // 生成隨機數(shù) 0 到 length - 1

// 獲得字母數(shù)字

char c = words.charAt(index);

sb.append(c);

// 將c 輸出到圖片

graphics2d.rotate(theta, x, 20);

graphics2d.drawString(String.valueOf(c), x, 20);

graphics2d.rotate(-theta, x, 20);

x += 30;

}

// 將生成的字母存入到session中

ServletActionContext.getRequest().getSession()

.setAttribute("checkcode", sb.toString());

// 步驟五 繪制干擾線

graphics.setColor(getRandColor(160, 200));

int x1;

int x2;

int y1;

int y2;

for (int i = 0; i < 30; i++) {

x1 = random.nextInt(width);

x2 = random.nextInt(12);

y1 = random.nextInt(height);

y2 = random.nextInt(12);

graphics.drawLine(x1, y1, x1 + x2, x2 + y2);

}

// 將上面圖片輸出到瀏覽器 ImageIO

graphics.dispose();// 釋放資源

ImageIO.write(bufferedImage, "jpg", ServletActionContext.getResponse()

.getOutputStream());

return NONE;

}

/**

* 取其某一范圍的color

*

* @param fc

*            int 范圍參數(shù)1

* @param bc

*            int 范圍參數(shù)2

* @return Color

*/

private Color getRandColor(int fc, int bc) {

// 取其隨機顏色

Random random = new Random();

if (fc > 255) {

fc = 255;

}

if (bc > 255) {

bc = 255;

}

int r = fc + random.nextInt(bc - fc);

int g = fc + random.nextInt(bc - fc);

int b = fc + random.nextInt(bc - fc);

return new Color(r, g, b);

}

}

在struts.xml中配置

<!-- 配置驗證碼的Action -->
<action name="checkImg" class="checkImg"></action>

在applicationContext.xml中配置

<bean id="checkImg" class="cn.yiyuan.shop.user.CheckImgAction" scope="prototype"></bean>

在regist1.jsp中驗證碼圖片的位置

src="${pageContext.request.contextPath}/checkImg.action"

到這時驗證碼已經(jīng)可以在頁面顯示了,并且刷新頁面可以刷新驗證碼的顯示,但是如果要實現(xiàn)點擊驗證碼圖片切換驗證碼效果需要再寫js進行切換

導入vuejs實現(xiàn)點擊切換驗證碼效果

導入vue.js與app.js,主要實現(xiàn)在app.js里

//register.jsp img驗證碼標簽
 @click="change()"

var vm = new Vue({
    el: '#app',
     data: {
        
     },
    //在methods對象中定義方法
    methods:{
        change:function (){
            //點擊切換驗證碼圖片
            var img = document.getElementById("checkImg");
            img.src = "${pageContext.request.contextPath}/checkImg.action?"+new Date().getTime();
            
        }
    }       
})

此時已經(jīng)可以通過點擊來修改驗證碼圖片了

實現(xiàn)點擊注冊按鈕提交驗證碼校驗

在UserAction中regist方法上進行校驗.

    /**
     * 前臺:注冊用戶的方法:
     */
    @InputConfig(resultName="registInput")
    public String regist(){
        // 從session中獲得存的驗證碼
        String checkcodeRegister = (String) ServletActionContext.getRequest().getSession().getAttribute("checkcode");
        if(checkcode == null || !checkcode.equalsIgnoreCase(checkcodeRegister)){
            this.addActionError("驗證碼錯誤!");
            return "registInput";
        }
        userService.regist(user);
        this.addActionMessage("注冊成功!請去郵箱激活!");
        return "registSuccess";
    }

當你完成這一步時,恭喜你可以模塊化集成驗證碼就已經(jīng)完成了

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 173,523評論 25 708
  • 發(fā)現(xiàn) 關注 消息 iOS 第三方庫、插件、知名博客總結 作者大灰狼的小綿羊哥哥關注 2017.06.26 09:4...
    肇東周閱讀 12,252評論 4 61
  • 玄幻加穿越,想像力無界限嗎?——評血紅《巫頌》(第一部)(上、下) 文/北風來襲 讀罷《巫頌》(第一部),不禁震驚...
    北風來襲閱讀 455評論 0 2
  • 寫了這么多天,都不知道寫什么了。 天氣轉冷,北方的天氣還是那么冷,雖然是艷陽高照,風和日麗。都是心情不是很好。 人...
    求無1824閱讀 324評論 0 0
  • 夢醒了望向窗外落葉一片兩片的隨風飛舞降落,秋天一個凋零的季節(jié)。 有些時候我還是會期待在我這平凡的日子里會遇見一直期...
    遇見泡沫閱讀 275評論 0 0