您好,登錄后才能下訂單哦!
使用java編寫一個(gè)驗(yàn)證碼生成功能?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
java 驗(yàn)證碼的生成實(shí)現(xiàn)
所謂驗(yàn)證碼,就是將一串隨機(jī)產(chǎn)生的數(shù)字或符號(hào),生成一幅圖片, 圖片里加上一些干擾,例如隨機(jī)畫數(shù)條直線或者畫一些點(diǎn),由用戶肉眼識(shí)別其中的驗(yàn)證碼信息,輸入表單提交網(wǎng)站驗(yàn)證,驗(yàn)證成功后才能使用某項(xiàng)功能。驗(yàn)證碼中之所以加上凌亂的直線是為了防止某些人使用OCR軟件識(shí)別隨機(jī)產(chǎn)生的數(shù)字或符號(hào),從而達(dá)到惡意破解密碼、刷票、論壇灌水、刷頁等惡意行為。下面就開始直接上代碼吧:
下面是Demo的文件組織結(jié)構(gòu)
下面就是index.jsp的代碼。主要功能是單擊瀏覽器上的驗(yàn)證碼圖片,實(shí)現(xiàn)驗(yàn)證碼的更換。
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>" rel="external nofollow" > <title>驗(yàn)證碼</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <title>驗(yàn)證碼</title> <script type="text/javascript"> function refresh(obj) { obj.src = "${pageContext.request.contextPath}/RandomValidateCodeServlet?"+Math.random(); } </script> </head> <body> <form action="checkServlet" method="post"> <img title="點(diǎn)擊更換" onclick="javascript:refresh(this);" src="RandomValidateCodeServlet"> </form> </body> </html>
Web.xml中的servlet配置信息如下
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <servlet> <servlet-name>RandomValidateCodeServlet</servlet-name> <servlet-class>com.web.RandomValidateCodeServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>RandomValidateCodeServlet</servlet-name> <url-pattern>/RandomValidateCodeServlet</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
下面是servlet中的代碼,這里只是為了演示所以就只做了doGet方法,對(duì)于doPost方法就沒有在這里考慮
public class RandomValidateCodeServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("image/jpeg");//設(shè)置相應(yīng)類型,告訴瀏覽器輸出的內(nèi)容為圖片 response.setHeader("Pragma", "No-cache");//設(shè)置響應(yīng)頭信息,告訴瀏覽器不要緩存此內(nèi)容 response.setHeader("Cache-Control", "no-cache"); response.setDateHeader("Expire", 0); RandomValidateCode randomValidateCode = new RandomValidateCode(); try { randomValidateCode.getRandcode(request, response);//輸出圖片方法 } catch (Exception e) { e.printStackTrace(); } } }
下面就是驗(yàn)證碼生成的主要類了
public class RandomValidateCode { public static final String RANDOMCODEKEY = "RANDOMVALIDATECODEKEY";// 放到session中的key private Random random = new Random(); // 隨機(jī)產(chǎn)生數(shù)字與字母組合的字符串 private String randString = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; /* * private String randString = "0123456789";//隨機(jī)產(chǎn)生只有數(shù)字的字符串 private String * randString = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";//隨機(jī)產(chǎn)生只有字母的字符串 */ private int width = 80;// 圖片寬 private int height = 26;// 圖片高 private int lineSize = 40;// 干擾線數(shù)量 private int stringNum = 4;// 隨機(jī)產(chǎn)生字符數(shù)量 /* * 獲得字體 */ private Font getFont() { return new Font("Fixedsys", Font.CENTER_BASELINE, 18); } /* * 獲得顏色 */ private Color getRandColor(int fc, int bc) { if (fc > 255) fc = 255; if (bc > 255) bc = 255; int r = fc + random.nextInt(bc - fc - 16); int g = fc + random.nextInt(bc - fc - 14); int b = fc + random.nextInt(bc - fc - 18); return new Color(r, g, b); } /** * 生成隨機(jī)圖片 */ public void getRandcode(HttpServletRequest request, HttpServletResponse response) { HttpSession session = request.getSession(); // BufferedImage類是具有緩沖區(qū)的Image類,Image類是用于描述圖像信息的類 BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR); Graphics g = image.getGraphics();// 產(chǎn)生Image對(duì)象的Graphics對(duì)象,改對(duì)象可以在圖像上進(jìn)行各種繪制操作 g.fillRect(0, 0, width, height); g.setFont(new Font("Times New Roman", Font.ROMAN_BASELINE, 18)); g.setColor(getRandColor(110, 133)); // 繪制干擾線 for (int i = 0; i <= lineSize; i++) { drowLine(g); } // 繪制隨機(jī)字符 String randomString = ""; for (int i = 1; i <= stringNum; i++) { randomString = drowString(g, randomString, i); } //將生成的隨機(jī)字符串保存到session中,而jsp界面通過session.getAttribute("RANDOMCODEKEY"), //獲得生成的驗(yàn)證碼,然后跟用戶輸入的進(jìn)行比較 session.removeAttribute(RANDOMCODEKEY); session.setAttribute(RANDOMCODEKEY, randomString); g.dispose(); try { // 將內(nèi)存中的圖片通過流動(dòng)形式輸出到客戶端 ImageIO.write(image, "JPEG", response.getOutputStream()); } catch (Exception e) { e.printStackTrace(); } } /* * 繪制字符串 */ private String drowString(Graphics g, String randomString, int i) { g.setFont(getFont()); g.setColor(new Color(random.nextInt(101), random.nextInt(111), random .nextInt(121))); String rand = String.valueOf(getRandomString(random.nextInt(randString .length()))); randomString += rand; g.translate(random.nextInt(3), random.nextInt(3)); g.drawString(rand, 13 * i, 16); return randomString; } /* * 繪制干擾線 */ private void drowLine(Graphics g) { int x = random.nextInt(width); int y = random.nextInt(height); int xl = random.nextInt(13); int yl = random.nextInt(15); g.drawLine(x, y, x + xl, y + yl); } /* * 獲取隨機(jī)的字符 */ public String getRandomString(int num) { return String.valueOf(randString.charAt(num)); } }
關(guān)于使用java編寫一個(gè)驗(yàn)證碼生成功能問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。