濮阳杆衣贸易有限公司

主頁 > 知識(shí)庫 > jsp+Servlet編程實(shí)現(xiàn)驗(yàn)證碼的方法

jsp+Servlet編程實(shí)現(xiàn)驗(yàn)證碼的方法

熱門標(biāo)簽:四川保險(xiǎn)智能外呼系統(tǒng)商家 地圖標(biāo)注線上教程 電銷機(jī)器人是有一些什么技術(shù) 高德地圖標(biāo)注樣式 商洛電銷 杭州ai語音電銷機(jī)器人功能 杭州語音電銷機(jī)器人軟件 電銷機(jī)器人好賣么 北票市地圖標(biāo)注

本文實(shí)例講述了jsp+Servlet編程實(shí)現(xiàn)驗(yàn)證碼的方法。分享給大家供大家參考,具體如下:

這里用到兩個(gè)類,一個(gè)用于驗(yàn)證碼實(shí)現(xiàn),一個(gè)為后臺(tái)Servlet驗(yàn)證輸入是否正確:

CodeUtil.java--------驗(yàn)證碼具體實(shí)現(xiàn):

package util; 
import java.awt.Color; 
import java.awt.Font; 
import java.awt.Graphics; 
import java.awt.image.BufferedImage; 
import java.io.IOException; 
import java.io.OutputStream; 
import java.io.PrintWriter; 
import java.util.Random; 
import javax.imageio.ImageIO; 
import javax.servlet.ServletException; 
import javax.servlet.http.HttpServlet; 
import javax.servlet.http.HttpServletRequest; 
import javax.servlet.http.HttpServletResponse; 
import javax.servlet.http.HttpSession; 
import javax.servlet.jsp.PageContext; 
import javax.servlet.jsp.tagext.BodyContent; 
import com.sun.image.codec.jpeg.JPEGCodec; 
import com.sun.image.codec.jpeg.JPEGImageDecoder; 
import com.sun.image.codec.jpeg.JPEGImageEncoder; 
public class CodeUtil extends HttpServlet { 
 public void service(HttpServletRequest request, HttpServletResponse response) 
   throws ServletException, IOException { 
  //System.out.println("哈哈哈"); 
  response.setContentType("image/jpeg"); 
  //設(shè)置頁面不緩存 
  response.setHeader("Pragma", "No-cache"); 
  response.setHeader("Cache-Control", "no-cache");  
  response.setDateHeader("Expires", 0); 
  //在內(nèi)存中創(chuàng)建圖像 
  int width = 90; 
  int height = 35; 
  BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB); 
  //獲取圖形上下文 
  Graphics g = image.getGraphics(); 
  //隨機(jī)類 
  Random random = new Random(); 
  //設(shè)定背景 
  g.setColor(getRandColor(200, 250)); 
  g.fillRect(0, 0, width, height); 
  //設(shè)定字體 
  g.setFont(new Font("Times New Roman",Font.PLAIN,30)); 
  //隨機(jī)產(chǎn)生干擾線 
  g.setColor(getRandColor(160, 200));  
  for (int i = 0; i  100; i++) {  
   int x = random.nextInt(width);  
   int y = random.nextInt(height);  
   int xl = random.nextInt(12);  
   int yl = random.nextInt(12);  
   g.drawLine(x, y, x + xl, y + yl);  
  } 
  //隨機(jī)產(chǎn)生4位驗(yàn)證碼 
  String[] codes = {"0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"}; 
  String code = ""; 
  for(int i=0;i4;i++){ 
   String str = codes[random.nextInt(codes.length)]; 
   code += str; 
   // 將認(rèn)證碼顯示到圖象中 
   g.setColor(new Color(50 + random.nextInt(110), 20 + random.nextInt(110), 30 + random.nextInt(110))); 
   //調(diào)用函數(shù)出來的顏色相同,可能是因?yàn)榉N子太接近,所以只能直接生成  
   g.drawString(str, 18 * i +13, 27); //文字間距*i+距離左邊距,上邊距 
  } 
  HttpSession session=request.getSession(); 
  // 將認(rèn)證碼存入SESSION  
  session.setAttribute("code", code); 
  // 圖象生效  
  g.dispose();  
  // 輸出圖象到頁面  
  ImageIO.write(image, "JPEG", response.getOutputStream()); 
  //加上下面代碼,運(yùn)行時(shí)才不會(huì)出現(xiàn)java.lang.IllegalStateException: getOutputStream() has already been called ..........等異常 
  response.getOutputStream().flush(); 
  response.getOutputStream().close(); 
  response.flushBuffer(); 
 } 
 //獲取隨機(jī)顏色 
 private Color getRandColor(int fc,int bc){ 
  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); 
  } 
} 

CheckCodeUtil.java-----------用戶輸入驗(yàn)證功能

package util; 
import java.io.IOException; 
import java.io.PrintWriter; 
import javax.servlet.ServletException; 
import javax.servlet.http.HttpServlet; 
import javax.servlet.http.HttpServletRequest; 
import javax.servlet.http.HttpServletResponse; 
import javax.servlet.http.HttpSession; 
public class CheckCodeUtil extends HttpServlet { 
 public void service(HttpServletRequest request, HttpServletResponse response) 
   throws ServletException, IOException { 
  request.setCharacterEncoding("utf-8"); 
  response.setContentType("text/html;charset=utf-8"); 
  PrintWriter out = response.getWriter(); 
  //從session獲取驗(yàn)證碼 
  HttpSession session=request.getSession(); 
  String code=session.getAttribute("code").toString(); 
  System.out.println(code); 
  //獲取用戶輸入驗(yàn)證碼 
  String input=request.getParameter("code"); 
  System.out.println(input); 
  if(code.equalsIgnoreCase(input)){ 
   //轉(zhuǎn)發(fā)數(shù)據(jù) 
   request.setAttribute("result", "true"); 
   request.getRequestDispatcher("test/regist.jsp").forward(request, response); 
//   response.sendRedirect(request.getContextPath()+"/regist/regist.jsp"); 
  }else{ 
   request.setAttribute("result", "false"); 
   request.getRequestDispatcher("test/regist.jsp").forward(request, response); 
  } 
 } 
} 

測(cè)試頁面效果:

測(cè)試頁面代碼:

%@ page session="true" pageEncoding="utf-8" contentType="text/html; charset=utf-8"%> 
!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
html> 
 head> 
  meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
  title>Insert title here/title> 
  script> 
   function showResult1(){ 
   alert('輸入正確'); 
   } 
   function showResult2(){ 
   alert('輸入錯(cuò)誤'); 
   } 
  /script> 
 /head> 
 % 
  response.setContentType("text/html;charset=utf-8"); 
  request.setCharacterEncoding("utf-8"); 
  String path=request.getContextPath(); 
  if(request.getAttribute("result")!=null){ 
  String result=request.getAttribute("result").toString(); 
  out.print(result); 
  if(result.equals("true")){ 
   out.print("true"); 
   out.print("script>showResult1();script>"); 
  }else{ 
   out.print("script>showResult2();script>"); 
  } 
  } 
 %> 
  body> 
  br>驗(yàn)證碼演示 
  form action="%=path %>/checkCodeUtil" method="post"> 
  input type="text" size="10" name="code"/> 
  img src="%=path %>/codeUtil" id="img"/> 
  a href="javascript:;" onclick="document. 
   getElementById('img').src='%=path %>/codeUtil?'+new Date().getTime();">看不清,換一個(gè)/a> 
  input type="submit" value="提交"> 
  /form> 
 /body> 
/html> 

希望本文所述對(duì)大家jsp程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • JSP + Servlet實(shí)現(xiàn)生成登錄驗(yàn)證碼示例
  • jsp引用servlet生成的驗(yàn)證碼代碼演示
  • Jsp生成頁面驗(yàn)證碼的方法[附代碼]
  • JSP實(shí)現(xiàn)登錄功能之添加驗(yàn)證碼
  • jsp 生成驗(yàn)證碼代碼
  • 實(shí)現(xiàn)jsp驗(yàn)證碼的簡單小例子
  • jsp實(shí)現(xiàn)簡單驗(yàn)證碼的方法
  • jsp+ajax實(shí)現(xiàn)的局部刷新較驗(yàn)驗(yàn)證碼(onblur事件觸發(fā)較驗(yàn))
  • JSP彩色驗(yàn)證碼
  • Jsp servlet驗(yàn)證碼工具類分享

標(biāo)簽:丹東 貴州 宿州 紅河 青島 西藏 云浮 江西

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《jsp+Servlet編程實(shí)現(xiàn)驗(yàn)證碼的方法》,本文關(guān)鍵詞  jsp+Servlet,編程,實(shí)現(xiàn),驗(yàn)證,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《jsp+Servlet編程實(shí)現(xiàn)驗(yàn)證碼的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于jsp+Servlet編程實(shí)現(xiàn)驗(yàn)證碼的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    朝阳区| 保德县| 屏东市| 大同市| 卢氏县| 营口市| 蓝田县| 泌阳县| 衡水市| 大荔县| 靖安县| 桃园市| 平谷区| 枞阳县| 五家渠市| 本溪| 根河市| 安阳县| 肇庆市| 泾源县| 陇西县| 调兵山市| 英吉沙县| 大石桥市| 尚志市| 盘山县| 奇台县| 大渡口区| 南京市| 台中市| 威远县| 徐州市| 诸城市| 文安县| 麻城市| 互助| 谢通门县| 长宁区| 旌德县| 成武县| 南充市|