java生成圖片驗證碼實例代碼
關于java圖片驗證碼的文章最近更新了不少,幫助大家掌握java驗證碼的生成技術,下文為大家分享了java生成圖片驗證碼最簡單的方法,供大家參考。
現(xiàn)在各行業(yè)在定制系統(tǒng)時都會考慮到機器注冊,現(xiàn)在最有效的方式就是輸入驗證?,F(xiàn)在的驗證方式有很多種:
一、問題驗證,其實也是圖片驗證,在圖片上生成問題,然后輸入框輸入答案。
二、圖片驗證,輸入圖片上展示的文字信息。
三、短信驗證,比較繁雜,用戶也不怎么喜歡。
四、還有就是百度最新的驗證方式。圖片上生成文字,然后出現(xiàn)一個文字點擊框,選擇你在驗證圖片上看到的文字。
現(xiàn)在就分享一下java生成驗證碼的代碼,這是一個基礎的代碼??梢灾苯釉趯W習中使用,如果需要較為復雜的驗證可自己添加邏輯驗證。
@Controller public class ImgVerifyCode extends HttpServlet { /** * */ private static final long serialVersionUID = 1L; /** * 驗證碼圖片的寬度。 */ private int width = 70; /** * 驗證碼圖片的高度。 */ private int height =30; /** * 驗證碼字符個數(shù) */ private int codeCount = 5; /** * xx */ private int xx = 0; /** * 字體高度 */ private int fontHeight; /** * codeY */ private int codeY; /** * codeSequence */ String[] codeSequence = { "1" , "2" , "3" , "4" , "5" ,"6","7","8","9","A","a","B","b","c","C" ,"D","d","E","e","F","f","G","g","z","X","Q","v"}; /** * 初始化驗證圖片屬性 */ public void init() throws ServletException { // 從web.xml中獲取初始信息 // 寬度 String strWidth =width+""; // 高度 String strHeight = height+""; // 字符個數(shù) String strCodeCount = codeCount+""; // 將配置的信息轉換成數(shù)值 try { if (strWidth != null && strWidth.length() != 0) { width = Integer.parseInt(strWidth); } if (strHeight != null && strHeight.length() != 0) { height = Integer.parseInt(strHeight); } if (strCodeCount != null && strCodeCount.length() != 0) { codeCount = Integer.parseInt(strCodeCount); } } catch (NumberFormatException e) { e.printStackTrace(); } xx = width / (codeCount + 2); //生成隨機數(shù)的水平距離 fontHeight = height - 12; //生成隨機數(shù)的數(shù)字高度 codeY = height - 8; //生成隨機數(shù)的垂直距離 } protected String images(HttpServletRequest req, HttpServletResponse resp) throws ServletException,IOException { init(); // 定義圖像buffer BufferedImage buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D gd = buffImg.createGraphics(); // 創(chuàng)建一個隨機數(shù)生成器類 Random random = new Random(); // 將圖像填充為白色 gd.setColor(Color.WHITE); gd.fillRect(0, 0, width, height); // 創(chuàng)建字體,字體的大小應該根據(jù)圖片的高度來定。 Font font = new Font("Fixedsys", Font.PLAIN, fontHeight); // 設置字體。 gd.setFont(font); // 畫邊框。 gd.setColor(Color.BLACK); gd.drawRect(0, 0, width - 1, height - 1); // 隨機產生4條干擾線,使圖象中的認證碼不易被其它程序探測到。 gd.setColor(Color.BLACK); for (int i = 0; i < 4; 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數(shù)字的驗證碼。 for (int i = 0; i < codeCount; i++) { // 得到隨機產生的驗證碼數(shù)字。 String strRand = String.valueOf(codeSequence[random.nextInt(27)]); // 產生隨機的顏色分量來構造顏色值,這樣輸出的每位數(shù)字的顏色值都將不同。 red = random.nextInt(125); green = random.nextInt(255); blue = random.nextInt(200); // 用隨機產生的顏色將驗證碼繪制到圖像中。 gd.setColor(new Color(red, green, blue)); gd.drawString(strRand, (i + 1) * xx, codeY); // 將產生的四個隨機數(shù)組合在一起。 randomCode.append(strRand); } // 將四位數(shù)字的驗證碼保存到Session中。 HttpSession session = req.getSession(); session.setAttribute("validateCode", 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(); return null; } }
這個代碼就是生成驗證圖片的基礎方法。
以上就是本文的全部內容,希望對大家的學習有所幫助,大家也可以查看之前的文章進行深入學習。
相關文章
Java學習基礎之安裝JDK/配置JDK環(huán)境&IEDA工具安裝
這篇文章主要介紹了Java學習基礎系列文章的第一篇,主要內容是安裝JDK/配置JDK環(huán)境&IEDA工具安裝的相關資料,需要的朋友可以參考下2020-02-02java String 轉成Double二維數(shù)組的方法
下面小編就為大家?guī)硪黄猨ava String 轉成Double二維數(shù)組的方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2016-10-10Java中線程組ThreadGroup與線程池的區(qū)別及示例
這篇文章主要介紹了Java中線程組與線程池的區(qū)別及示例,ThreadGroup是用來管理一組線程的,可以控制線程的執(zhí)行,查看線程的執(zhí)行狀態(tài)等操作,方便對于一組線程的統(tǒng)一管理,需要的朋友可以參考下2023-05-05MyBatis 如何配置多個別名 typeAliasesPackage
這篇文章主要介紹了MyBatis 如何配置多個別名 typeAliasesPackage,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-01-01SpringBoot+Mybatis項目使用Redis做Mybatis的二級緩存的方法
本篇文章主要介紹了SpringBoot+Mybatis項目使用Redis做Mybatis的二級緩存的方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-12-12