注:參考文章連接:http://www.2cto.com/kf/201305/211756.htmlhtml
稍做了一些修改,記錄一下。數組
@Controller public class CodeController { private int width = 60;//定義圖片的width private int height = 20;//定義圖片的height private int codeCount = 4;//定義圖片上顯示驗證碼的個數 private int xx = 13; private int fontHeight = 18; private int codeY = 16; char[] codeSequence = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".toCharArray(); @RequestMapping("/code") public void getCode(HttpServletRequest req, HttpServletResponse resp) throws IOException { // 定義圖像buffer BufferedImage buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics gd = buffImg.getGraphics(); // 設定背景色 gd.setColor(getRandColor(200, 250)); gd.fillRect(0, 0, width, height); //設定字體,字體的大小應該根據圖片的高度來定。 gd.setFont(new Font("Times New Roman", Font.PLAIN, fontHeight)); // 建立一個隨機數生成器類 Random random = new Random(); // 隨機產生40條幹擾線,使圖象中的認證碼不易被其它程序探測到。 gd.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); gd.drawLine(x, y, x + xl, y + yl); } // randomCode用於保存隨機產生的驗證碼,以便用戶登陸後進行驗證。 StringBuffer randomCode = new StringBuffer(); int red = 0, green = 0, blue = 0; // 隨機產生codeCount數字的驗證碼。 for (int i = 0; i < codeCount; i++) { // 獲得隨機產生的驗證碼數字。 String code = String.valueOf(codeSequence[random.nextInt(36)]); // 產生隨機的顏色份量來構造顏色值,這樣輸出的每位數字的顏色值都將不一樣。 red = random.nextInt(110); green = random.nextInt(110); blue = random.nextInt(110); // 用隨機產生的顏色將驗證碼繪製到圖像中。 gd.setColor(new Color(red+20, green+20, blue+20)); gd.drawString(code, i * xx + 6, codeY); // 將產生的四個隨機數組合在一塊兒。 randomCode.append(code); } // 將四位數字的驗證碼保存到Session中。 HttpSession session = req.getSession(); System.out.println(randomCode); session.setAttribute("code", randomCode.toString()); // 禁止圖像緩存。 resp.setHeader("Pragma", "no-cache"); resp.setHeader("Cache-Control", "no-cache"); resp.setDateHeader("Expires", 0); resp.setContentType("image/jpeg"); // 將圖像輸出到Servlet輸出流中。 ServletOutputStream sos = resp.getOutputStream(); ImageIO.write(buffImg, "jpeg", sos); sos.close(); } 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); } }