JSP驗(yàn)證碼大全之?dāng)?shù)字驗(yàn)證碼(源碼)
???JSP驗(yàn)證碼源碼大全將分別用幾個(gè)篇幅的內(nèi)容來介紹在JSP中幾種驗(yàn)證碼的實(shí)現(xiàn)源碼以及使用。
???一、JSP中產(chǎn)生數(shù)字驗(yàn)證碼源碼???
???數(shù)字驗(yàn)證碼是一種最常用的驗(yàn)證字符碼形式,以下為數(shù)字實(shí)現(xiàn)的JSP源碼:???
<%@ page contentType="image/jpeg" import="java.awt.*,java.awt.image.*,java.util.*,javax.imageio.*" %>
<%!
??? Color getRandColor(int cc,int bb)
??? {
??????? Random random = new Random();
??????? if(fc>255) cc=255;
??????? if(bc>255) bb=255;
??????? int r=cc+random.nextInt(bb-cc);
??????? int g=cc+random.nextInt(bb-cc);
??????? int b=cc+random.nextInt(bb-cc);
??????? returnnew Color(r,g,b);
??? } //獲取隨機(jī)顏色
%>
<%
??? response.setHeader("Pragma","No-cache");
??? response.setHeader("Cache-Control","no-cache");
??? response.setDateHeader("Expires", 0);
??? int width=80; //定義驗(yàn)證碼圖片的長度
??? int height=30; //定義驗(yàn)證碼圖片的寬度
??? BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
??? Graphics g = image.getGraphics();
??? Random random = new Random();
??? g.setColor(getRandColor(200,250));
??? g.fillRect(0, 0, width, height);
??? g.setFont(new Font("Times New Roman",Font.PLAIN,18));
?
??? g.setColor(getRandColor(160,200));
??? for (int i=0;i<155;i++)
??? {
?????? int i_x = random.nextInt(width);
?????? int i_y = random.nextInt(height);
?????? int i_xl = random.nextInt(12);
?????? int i_yl = random.nextInt(12);
?????? g.drawLine(i_x,i_y,i_x+i_xl,i_y+i_yl);
??? }
?
??? String s_Rand="";
??? for (int i=0;i<4;i++)
??? {
?????? String rand=String.valueOf(random.nextInt(10));
?????? s_Rand+=rand;
??????
?????? g.setColor(new Color(20+random.nextInt(110),20+random.nextInt(110),20+random.nextInt(110)));
?????? g.drawString(rand,13*i+6,16);
??? }
?
??? session.setAttribute("rand",s_Rand);
?
??? g.dispose();
???
??? ImageIO.write(image, "JPEG", response.getOutputStream());
????//輸出驗(yàn)證圖片
???
??? out.clear();
??? out = pageContext.pushBody();
???
%>

接下來文章將介紹JSP中的中文驗(yàn)證碼、其他JAVA驗(yàn)證碼的實(shí)現(xiàn)以及對(duì)JSP中對(duì)驗(yàn)證碼的調(diào)用和使用的有關(guān)內(nèi)容,下一篇文章將介紹有關(guān)JSP中文驗(yàn)證碼的源碼實(shí)現(xiàn)。
?
鳳凰涅槃/浴火重生/馬不停蹄/只爭朝夕
???? 隱姓埋名/低調(diào)華麗/簡單生活/完美人生
posted on 2008-11-28 14:29 poetguo 閱讀(27811) 評(píng)論(68) 編輯 收藏 所屬分類: JSP 、JAVA