1. 程式人生 > >關於登入(使用者名稱,密碼,驗證碼)

關於登入(使用者名稱,密碼,驗證碼)

html
關於登入(使用者名稱,密碼,驗證碼)
ajax
關於登入(使用者名稱,密碼,驗證碼)
關於登入(使用者名稱,密碼,驗證碼)
Controller
關於登入(使用者名稱,密碼,驗證碼)
關於登入(使用者名稱,密碼,驗證碼)
UserServiceImpl
關於登入(使用者名稱,密碼,驗證碼)
驗證碼Controller
關於登入(使用者名稱,密碼,驗證碼)
YzmServiceImpl
關於登入(使用者名稱,密碼,驗證碼)
宣告Constant類
關於登入(使用者名稱,密碼,驗證碼)
驗證碼util類
package com.xinbo.www.utils;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import sun.misc.BASE64Encoder;
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.Random;

public class RandomValidateCodeUtil {
public static final String RANDOMCODEKEY = "randomcode_key";//放到session中的key
private Random random = new Random();
private String randString = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";//隨機產生的字串
private int width = 85;//圖片寬
private int height = 36;//圖片高
private int lineSize = 40;//干擾線數量
private int stringNum = 4;//隨機產生字元數量

private static final Logger logger = LoggerFactory.getLogger(RandomValidateCodeUtil.class);

/**
 * 生成隨機圖片
 */
public Map<String,String> getRandcode() {
    // BufferedImage類是具有緩衝區的Image類,Image類是用於描述影象資訊的類
    BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR);
    Graphics g = image.getGraphics();// 產生Image物件的Graphics物件,改物件可以在影象上進行各種繪製操作
    g.fillRect(0, 0, width, height);//圖片大小
    g.setFont(new Font("Times New Roman", Font.ROMAN_BASELINE, 18));//字型大小
    g.setColor(getRandColor(110, 133));//字型顏色
    // 繪製干擾線
    for (int i = 0; i <= lineSize; i++) {
        drowLine(g);
    }
    // 繪製隨機字元
    String randomString = "";
    for (int i = 1; i <= stringNum; i++) {
        randomString = drowString(g, randomString, i);
    }

    logger.info(randomString);
    //將生成的隨機字串儲存到session中
    //session.removeAttribute(RANDOMCODEKEY);
    //session.setAttribute(RANDOMCODEKEY, randomString);
    g.dispose();
    String base64 = null;
    try {
        // 將記憶體中的圖片通過流動形式輸出到客戶端
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        ImageIO.write(image, "JPEG", baos);//圖片格式

        byte[] bytes = baos.toByteArray();

        base64 =  new BASE64Encoder().encodeBuffer(bytes).trim();
    } catch (Exception e) {
        logger.error("將記憶體中的圖片通過流動形式輸出到客戶端失敗>>>>   ", e);
    }

    Map<String,String> map = new HashMap<String,String>();
    map.put("num", randomString);
    map.put("pic", base64);
    return map;
}

/*
 * 獲得字型
 */
private Font getFont(){
    return new Font("Fixedsys",Font.CENTER_BASELINE,18);
}
/*
 * 獲得顏色
 */
private Color getRandColor(int fc,int bc){
    if(fc > 255)
        fc = 255;
    if(bc > 255)
        bc = 255;
    int r = fc + random.nextInt(bc-fc-16);
    int g = fc + random.nextInt(bc-fc-14);
    int b = fc + random.nextInt(bc-fc-18);
    return new Color(r,g,b);
}
/*
 * 繪製字串
 */
private String drowString(Graphics g,String randomString,int i){
    g.setFont(getFont());
    g.setColor(new Color(random.nextInt(101),random.nextInt(111),random.nextInt(121)));
    String rand = String.valueOf(getRandomString(random.nextInt(randString.length())));
    randomString +=rand;
    g.translate(random.nextInt(3), random.nextInt(3));
    g.drawString(rand, 13*i, 16);
    return randomString;
}
/*
 * 繪製干擾線
 */
private void drowLine(Graphics g){
    int x = random.nextInt(width);
    int y = random.nextInt(height);
    int xl = random.nextInt(13);
    int yl = random.nextInt(15);
    g.drawLine(x, y, x+xl, y+yl);
}
/*
 * 獲取隨機的字元
 */
public String getRandomString(int num){
    return String.valueOf(randString.charAt(num));
}

}