JSP驗證碼

來源:互聯網
上載者:User

標籤:color   java   io   for   ar   html   new   htm   

在JSP頁面上寫隨機的4位元驗證碼

執行個體化BufferedImage類 得到Graphics畫筆給圖片填充背景色 然後寫上隨機數和100個幹擾點

用scropt實現重新整理驗證碼

疑問:視頻和書上的DrawString 方法不能用 也不知道怎麼回事 把String轉成了char調用了另外一個drawChars的方法才對

<%@ page language="java" contentType="text/html; charset=GB2312"import = "java.awt.image.*"import = "java.util.*"import = "java.awt.*"import = "javax.imageio.*"import = "java.lang.*"%><html><head></head><body><% response.setHeader("Cache-Control", "no-cache");BufferedImage image = new BufferedImage(60, 20, BufferedImage.TYPE_INT_RGB); Graphics g = image.getGraphics(); g.setColor(new Color(200, 200, 200));g.fillRect(0, 0, 60, 20);Random rd = new Random(); int r = rd.nextInt(8999) + 1000; String rand = String.valueOf(r); session.setAttribute("rand", rand); g.setColor(Color.BLACK); g.setFont(new Font("", Font.PLAIN, 20)); g.drawChars(rand.toCharArray(), 0, rand.length(), 10, 17); for(int i = 0; i < 100; i++){ int x = rd.nextInt(60); int y = rd.nextInt(20); g.drawOval(x, y, 1, 1); } ImageIO.write(image, "JPEG", response.getOutputStream()); %></body></html>


 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.