JSP驗(yàn)證碼簡單生成方法
更新時(shí)間:2015年10月09日 12:03:09 作者:沉淀歲月
這篇文章主要介紹了JSP驗(yàn)證碼簡單生成方法,實(shí)例分析了jsp驗(yàn)證碼圖片的生成技巧,涉及jsp數(shù)學(xué)運(yùn)算及圖像處理方法,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
本文實(shí)例講述了JSP驗(yàn)證碼簡單生成方法。分享給大家供大家參考。具體如下:
<%@ page contentType="image/jpeg" import="java.awt.*,java.awt.image.*,java.util.*,javax.imageio.*" %> <%! Color getRandColor(int fc,int bc){//給定范圍獲得隨機(jī)顏色 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è)置頁面不緩存 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)); //畫邊框 //g.setColor(new Color()); //g.drawRect(0,0,width-1,height-1); // 隨機(jī)產(chǎn)生155條干擾線,使圖象中的認(rèn)證碼不易被其它程序探測到 g.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); g.drawLine(x,y,x+xl,y+yl); } // 取隨機(jī)產(chǎn)生的認(rèn)證碼(4位數(shù)字) //String rand = request.getParameter("rand"); //rand = rand.substring(0,rand.indexOf(".")); 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ù)出來的顏色相同,可能是因?yàn)榉N子太接近,所以只能直接生成 g.drawString(rand,13*i+6,16); } // 將認(rèn)證碼存入SESSION session.setAttribute("rand",sRand); // 圖象生效 g.dispose(); // 輸出圖象到頁面 ImageIO.write(image, "JPEG", response.getOutputStream()); out.clear(); out = pageContext.pushBody(); %>
希望本文所述對(duì)大家的JSP程序設(shè)計(jì)有所幫助。
相關(guān)文章
jsp頁面中如何將時(shí)間戳字符串格式化為時(shí)間標(biāo)簽
本節(jié)主要介紹了jsp頁面中如何將時(shí)間戳字符串格式化為時(shí)間標(biāo)簽,需要的朋友可以參考下2014-08-08多種方法實(shí)現(xiàn)當(dāng)jsp頁面完全加載完成后執(zhí)行一個(gè)js函數(shù)
實(shí)現(xiàn)jsp頁面完全加載完成后執(zhí)行一個(gè)js函數(shù)的方法有很多,在本文就簡單為大家介紹下常用的幾種,感興趣的朋友不要錯(cuò)過2013-10-10jsp中使用frameset框架 邊框固定不讓更改邊框的大小
有時(shí)候可能要對(duì)自己布局好的頁面不讓用戶更改邊框的大小,這樣我們可以在frame里面添加noresize="noresize"屬性就可以實(shí)現(xiàn)其中的功能2014-07-07JSP 點(diǎn)擊鏈接后下載文件(相當(dāng)于右鍵另存)功能
JSP 點(diǎn)擊鏈接后下載文件(相當(dāng)于右鍵另存)功能實(shí)現(xiàn)代碼。2009-07-07