溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在JavaWeb中使用Session實現(xiàn)一次性驗證碼功能

發(fā)布時間:2021-04-19 17:44:17 來源:億速云 閱讀:173 作者:Leah 欄目:編程語言

本篇文章為大家展示了怎么在JavaWeb中使用Session實現(xiàn)一次性驗證碼功能,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

Java是什么

Java是一門面向對象編程語言,可以編寫桌面應用程序、Web應用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應用程序。

表單

<form action="loginServlet" method="post">
 請輸入驗證碼:<input type="text" name="code" />
 <img src="getCodeServlet" /><br />
 <button type="submit">提交</button>
</form>

載入頁面時,會自動請求getCodeServlet,獲取圖片(驗證碼)。

getCodeServlet,產(chǎn)生驗證碼

@WebServlet("/getCodeServlet")
public class GetCodeServlet extends HttpServlet {
  //驗證碼的寬、高
  private static int WIDTH=80;
  private static int HEIGHT=25;
  //繪制背景
  private void drawBg(Graphics g){
    //rgb
    g.setColor(new Color(128, 128, 128));
    //繪制矩形。x,y,wigth,height
    g.fillRect(0,0,WIDTH,HEIGHT);
    //隨機繪制100個干擾點
    Random random=new Random();
    for (int i=0;i<100;i++){
      //產(chǎn)生(0,1)上的小數(shù),*WIDTH|HEIGHT,再取整也行
      int x=random.nextInt(WIDTH);
      int y=random.nextInt(HEIGHT);
      g.drawOval(x,y,1,1);
      //干擾點的顏色也可以隨機,隨機產(chǎn)生red,green,blue即可
      //g.setColor(new Color(red,green,blue));
    }
  }
  //繪制驗證碼
  private void drawCode(Graphics g,char[] code){
    g.setColor(Color.BLACK);
    //字體、樣式(多個時豎線分隔)、字號
    g.setFont(new Font("serif",Font.ITALIC|Font.BOLD,18));
    //在不同位置繪制驗證碼字符,參數(shù):要繪制的String、橫、縱坐標。+""是為了char轉String。
    g.drawString(code[0]+"",1,17);
    g.drawString(code[1]+"",16,15);
    g.drawString(code[2]+"",31,18);
    g.drawString(code[3]+"",46,16);
  }
  //隨機產(chǎn)生4位驗證碼
  private char[] getCode(){
    String chars="0123456789QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm";
    char[] code=new char[4];
    Random random=new Random();
    for (int i=0;i<4;i++){
      //[0,62)
      int index= random.nextInt(62);
      code[i]=chars.charAt(index);
    }
    return code;
  }
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
    HttpSession session = request.getSession();
    ServletOutputStream sos = response.getOutputStream();
    response.setContentType("image/jpeg");
    //設置瀏覽器不緩存此圖片
    response.setHeader("Pragma","No-cache");
    response.setHeader("Cache-Control","no-cache");
    response.setDateHeader("Expires",0);
    //創(chuàng)建內存圖片
    BufferedImage bufferedImage = new BufferedImage(WIDTH, HEIGHT, TYPE_INT_RGB);
    Graphics g= bufferedImage.getGraphics();
    char[] code=getCode();
    //將驗證碼放到session域中。session對象要在提交響應之前獲得
    session.setAttribute("code",new String(code));
    drawBg(g);
    drawCode(g,code);
    g.dispose();
    //將圖片輸出到瀏覽器
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    ImageIO.write(bufferedImage,"JPEG",baos);
    baos.writeTo(sos);
    baos.close();
    sos.close();
  }
  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
    doPost(request,response);
  }
}

loginServlet,處理表單

@WebServlet("/loginServlet")
public class LoginServlet extends HttpServlet {
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    response.setContentType("text/html;charset=utf-8");
    HttpSession session = request.getSession();
    String trueCode= (String) session.getAttribute("code");
    String code=request.getParameter("code");

    if (code.equals(trueCode)){
      response.getWriter().write("驗證碼正確");
    }
    else {
      response.getWriter().write("驗證碼錯誤");
    }
  }

  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request,response);
  }
}

上面的處理方式要區(qū)分驗證碼的大小寫。

不區(qū)分大小寫:

//先轉換為全大寫|全小寫,再判斷
    trueCode=trueCode.toLowerCase();
    code=code.toLowerCase();
    //trueCode=trueCode.toUpperCase();
    //code=trueCode.toUpperCase();

上述內容就是怎么在JavaWeb中使用Session實現(xiàn)一次性驗證碼功能,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI