java驗證碼生成類
package cn.edu.pdsu.action;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.util.Random;
import javax.imageio.ImageIO;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.struts2.ServletActionContext;
/**
* 類說明:驗證碼類(將驗證碼信息寫入到session中 屬性“authCode”)
*
* @author 作者: LiuJunGuang
* @version 創建時間:2011-7-17 下午03:26:21
*/
public class AuthCodeAction {
private HttpServletResponse response = ServletActionContext.getResponse();
private HttpServletRequest request = ServletActionContext.getRequest();
public String execute() {
try {
int width = 50;
int height = 20;
// 取得一個4位隨機字母數字字符串
String s = RandomStringUtils.random(4, true, true);
// 保存入session,用于與用戶的輸入進行比較.
// 注意比較完之后清除session.
HttpSession session = request.getSession(true);
session.setAttribute("authCode", s);
response.setContentType("images/jpeg");//告知瀏覽器內容的類型
response.setHeader("Pragma", "No-cache");//HTTP 1.0版 不要緩存
response.setHeader("Cache-Control", "no-cache"); //HTTP 1.1 不要緩存
response.setDateHeader("Expires", 0);//設置存活時間
ServletOutputStream out = response.getOutputStream();//得到響應輸出流
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();
// 設定背景色
g.setColor(getRandColor(200, 250));
g.fillRect(0, 0, width, height);
// 設定字體
Font mFont = new Font("Times New Roman", Font.BOLD, 18);// 設置字體
g.setFont(mFont);
// 畫邊框
// g.setColor(Color.BLACK);
// g.drawRect(0, 0, width - 1, height - 1);
// 隨機產生干擾線,使圖象中的認證碼不易被其它程序探測到
g.setColor(getRandColor(160, 200));
// 生成隨機類
Random random = new Random();
for (int i = 0; i < 125; i++) {
int x2 = random.nextInt(width);
int y2 = random.nextInt(height);
int x3 = random.nextInt(12);
int y3 = random.nextInt(12);
g.drawLine(x2, y2, x2 + x3, y2 + y3);
}
// 繪制一些長的干擾線
for (int i = 0; i < 5; i++) {
int y1 = random.nextInt(15) + 3;
g.drawLine(0, y1, width, y1);
g.setColor(getRandColor(10, 160));
}
// 將認證碼顯示到圖象中
g.setColor(new Color(20 + random.nextInt(110), 20 + random
.nextInt(110), 20 + random.nextInt(110)));
g.drawString(s, 2, 16);
// 圖象生效
g.dispose();
// 輸出圖象到頁面
ImageIO.write((BufferedImage) image, "JPEG", out);//將圖片以JPEG格式輸出到out輸出流中
out.close();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
//獲得某一范圍的隨機顏色
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);
}
}