App下載

jsp實(shí)現(xiàn)登陸驗(yàn)證碼

猿友 2021-01-07 11:46:39 瀏覽數(shù) (2549)
反饋

填寫(xiě)輸入信息 index.jsp

<html><body>     

<form method=post action="result.jsp">     

<input type=text name=input maxlength=4>     

<img border=0 src="image.jsp">     

<input type="submit"value="submit">     

</form></body></html> 

生成圖片 image.jps

<%@ page contentType="image/JPEG" 

    import="java.awt.*,java.awt.image.*,java.util.*,javax.imageio.*" 

    pageEncoding="GBK"%> 

給定范圍取得隨機(jī)色彩

<%!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);  

    }%> 

<%  

設(shè)置頁(yè)面不緩存

 response.setHeader("Pragma", "No-cache");  

response.setHeader("Cache-Control", "no-cache");  

response.setDateHeader("Expires", 0);  

在內(nèi)存中創(chuàng)建圖像

 int width = 60, height = 20;  

    BufferedImage image = new BufferedImage(width,height,  

            BufferedImage.TYPE_INT_RGB);  

獲得圖形上下文

 Graphics g = image.getGraphics();  

生成隨機(jī)類

Random random = new Random();  

設(shè)定背景

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

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

設(shè)定字體

g.setFont(new Font("Times New Roman", Font.PLAIN,18));  

畫(huà)邊框

//g.setColor(newColor());  

    //g.drawRect(0,0,width⑴,height⑴);  

 隨機(jī)產(chǎn)生155條干擾線,使圖像中的認(rèn)證碼不容易被其它程序探測(cè)到  

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

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

        int x = random.nextInt(width);  

        int y = random.nextInt(height);  

        int xl = random.nextInt(12);  

        int yl = random.nextInt(12);  

        g.drawLine(x, y, x + xl, y + yl);  

    }  

取隨機(jī)產(chǎn)生的認(rèn)證碼(4位數(shù)字)

 String sRand = "";  

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

        String rand =String.valueOf(random.nextInt(10));  

        sRand += rand;  

將認(rèn)證碼顯示到圖像中

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

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

調(diào)用函數(shù)出來(lái)的色彩相同,多是由于種子太接近,所以只能直接生成

g.drawString(rand, 13 * i + 6,16);  

    }  

將認(rèn)證碼存入SESSION

 session.setAttribute("code",sRand);  

圖像生效

 g.dispose();  

輸出圖像到頁(yè)面

 ImageIO.write(image, "JPEG",response.getOutputStream());  

%>

驗(yàn)證是不是輸入正確result.jsp

<%@ page language="java"import="java.util.*" pageEncoding="GBK"%> 

<html><body> 

<%  

    String input=request.getParameter("input");  

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

    if(input.equals(code)){  

        out.println("驗(yàn)證成功!");  

    }else{  

        out.println("驗(yàn)證失敗!");  

    }  

%> 

</body></html>

可能遇到的問(wèn)題:

你的 eclipse 會(huì)提示你:graphic.drawString() 方法毛病

是你的 jdk 版本太高了,但是不要緊。把這個(gè)項(xiàng)目的兼容版本放低就好了。

具體操作步驟:

右鍵進(jìn)程,選中 propriety,再選中“Java compiler”

把 jdk 的兼容版本下降到1.4便可


0 人點(diǎn)贊