這篇文章主要介紹java怎么實(shí)現(xiàn)簡(jiǎn)單驗(yàn)證碼,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
我們注重客戶提出的每個(gè)要求,我們充分考慮每一個(gè)細(xì)節(jié),我們積極的做好網(wǎng)站制作、網(wǎng)站建設(shè)服務(wù),我們努力開拓更好的視野,通過不懈的努力,成都創(chuàng)新互聯(lián)贏得了業(yè)內(nèi)的良好聲譽(yù),這一切,也不斷的激勵(lì)著我們更好的服務(wù)客戶。 主要業(yè)務(wù):網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)站設(shè)計(jì),重慶小程序開發(fā)公司,網(wǎng)站開發(fā),技術(shù)開發(fā)實(shí)力,DIV+CSS,PHP及ASP,ASP.Net,SQL數(shù)據(jù)庫(kù)的技術(shù)開發(fā)工程師。
具體內(nèi)容如下
簡(jiǎn)單驗(yàn)證碼java實(shí)現(xiàn)--servlet類生成 驗(yàn)證碼img,并寫入session
老師給的源碼,在此做個(gè)記錄,簡(jiǎn)單驗(yàn)證碼,java繪圖
在此鳴謝并附上源碼:.
// package app61; import java.io.*; import java.util.*; import com.sun.image.codec.jpeg.*; import javax.servlet.*; import javax.servlet.http.*; import java.awt.*; import java.awt.image.*; public class VerifyCode extends HttpServlet { private Font mFont = new Font("Times New Roman", Font.PLAIN, 18); //設(shè)置字體 public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //取得一個(gè)1000-9999的隨機(jī)數(shù) HttpSession session = request.getSession(true); response.setContentType("image/gif"); response.setHeader("Pragma", "No-cache"); response.setHeader("Cache-Control", "no-cache"); response.setDateHeader("Expires", 0); int width = 60, height = 20; ServletOutputStream out = response.getOutputStream(); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); //設(shè)置圖片大小的 Graphics gra = image.getGraphics(); Random random = new Random(); gra.setColor(getRandColor(200, 250)); //設(shè)置背景色rand墊底 gra.fillRect(0, 0, width, height); gra.setColor(Color.black); //設(shè)置字體色 gra.setFont(mFont); // 隨機(jī)產(chǎn)生155條干擾線,使圖象中的認(rèn)證碼不易被其它程序探測(cè)到 gra.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); gra.drawLine(x, y, x + xl, y + yl); } // 取隨機(jī)產(chǎn)生的認(rèn)證碼(4位數(shù)字) String sRand = ""; for (int i = 0; i < 4; i++) { String rand = String.valueOf(random.nextInt(10)); sRand += rand; // 將認(rèn)證碼顯示到圖象中 gra.setColor(new Color(20 + random.nextInt(110), 20 + random.nextInt(110), 20 + random.nextInt(110))); //調(diào)用函數(shù)出來的顏色相同,可能是因?yàn)榉N子太接近,所以只能直接生成 gra.drawString(rand, 13 * i + 6, 16); } session.setAttribute("rand",sRand); // session.setAttribute("getImg", sRand); JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out); encoder.encode(image); out.close(); } static 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); } //Clean up resources public void destroy() { } }
以上是“java怎么實(shí)現(xiàn)簡(jiǎn)單驗(yàn)證碼”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站欄目:java怎么實(shí)現(xiàn)簡(jiǎn)單驗(yàn)證碼
鏈接分享:http://jinyejixie.com/article10/gpidgo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、關(guān)鍵詞優(yōu)化、面包屑導(dǎo)航、品牌網(wǎng)站建設(shè)、外貿(mào)建站、微信小程序
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)