欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

java生成圖片驗(yàn)證碼實(shí)例代碼

 更新時(shí)間:2016年04月15日 11:46:23   投稿:lijiao  
這篇文章主要介紹了java生成圖片驗(yàn)證碼實(shí)例代碼,驗(yàn)證碼的種類(lèi)有很多,問(wèn)題驗(yàn)證、短信驗(yàn)證還有常見(jiàn)的圖片驗(yàn)證,本文就為大家介紹生成圖片驗(yàn)證碼最簡(jiǎn)單方法,感興趣的小伙伴們可以參考一下

關(guān)于java圖片驗(yàn)證碼的文章最近更新了不少,幫助大家掌握java驗(yàn)證碼的生成技術(shù),下文為大家分享了java生成圖片驗(yàn)證碼最簡(jiǎn)單的方法,供大家參考。

現(xiàn)在各行業(yè)在定制系統(tǒng)時(shí)都會(huì)考慮到機(jī)器注冊(cè),現(xiàn)在最有效的方式就是輸入驗(yàn)證?,F(xiàn)在的驗(yàn)證方式有很多種:

一、問(wèn)題驗(yàn)證,其實(shí)也是圖片驗(yàn)證,在圖片上生成問(wèn)題,然后輸入框輸入答案。

二、圖片驗(yàn)證,輸入圖片上展示的文字信息。

三、短信驗(yàn)證,比較繁雜,用戶(hù)也不怎么喜歡。

四、還有就是百度最新的驗(yàn)證方式。圖片上生成文字,然后出現(xiàn)一個(gè)文字點(diǎn)擊框,選擇你在驗(yàn)證圖片上看到的文字。
現(xiàn)在就分享一下java生成驗(yàn)證碼的代碼,這是一個(gè)基礎(chǔ)的代碼??梢灾苯釉趯W(xué)習(xí)中使用,如果需要較為復(fù)雜的驗(yàn)證可自己添加邏輯驗(yàn)證。

@Controller
public class ImgVerifyCode extends HttpServlet {
 
  /**
   *
   */
  private static final long serialVersionUID = 1L;
 
  /**
   * 驗(yàn)證碼圖片的寬度。
   */
  private int width = 70;
 
  /**
   * 驗(yàn)證碼圖片的高度。
   */
  private int height =30;
 
  /**
   * 驗(yàn)證碼字符個(gè)數(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"};
 
  /**
   * 初始化驗(yàn)證圖片屬性
   */
  public void init() throws ServletException {
    // 從web.xml中獲取初始信息
    // 寬度
    String strWidth =width+"";
    // 高度
    String strHeight = height+"";
    // 字符個(gè)數(shù)
    String strCodeCount = codeCount+"";
 
    // 將配置的信息轉(zhuǎn)換成數(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); //生成隨機(jī)數(shù)的水平距離
    fontHeight = height - 12;   //生成隨機(jī)數(shù)的數(shù)字高度
    codeY = height - 8;      //生成隨機(jī)數(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)建一個(gè)隨機(jī)數(shù)生成器類(lèi)
    Random random = new Random();
 
    // 將圖像填充為白色
    gd.setColor(Color.WHITE);
    gd.fillRect(0, 0, width, height);
 
    // 創(chuàng)建字體,字體的大小應(yīng)該根據(jù)圖片的高度來(lái)定。
    Font font = new Font("Fixedsys", Font.PLAIN, fontHeight);
    // 設(shè)置字體。
    gd.setFont(font);
 
    // 畫(huà)邊框。
    gd.setColor(Color.BLACK);
    gd.drawRect(0, 0, width - 1, height - 1);
 
    // 隨機(jī)產(chǎn)生4條干擾線(xiàn),使圖象中的認(rèn)證碼不易被其它程序探測(cè)到。
    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用于保存隨機(jī)產(chǎn)生的驗(yàn)證碼,以便用戶(hù)登錄后進(jìn)行驗(yàn)證。
    StringBuffer randomCode = new StringBuffer();
    int red = 0, green = 0, blue = 0;
 
    // 隨機(jī)產(chǎn)生codeCount數(shù)字的驗(yàn)證碼。
    for (int i = 0; i < codeCount; i++) {
      // 得到隨機(jī)產(chǎn)生的驗(yàn)證碼數(shù)字。
      String strRand = String.valueOf(codeSequence[random.nextInt(27)]);
      // 產(chǎn)生隨機(jī)的顏色分量來(lái)構(gòu)造顏色值,這樣輸出的每位數(shù)字的顏色值都將不同。
      red = random.nextInt(125);
      green = random.nextInt(255);
      blue = random.nextInt(200);
 
      // 用隨機(jī)產(chǎn)生的顏色將驗(yàn)證碼繪制到圖像中。
      gd.setColor(new Color(red, green, blue));
      gd.drawString(strRand, (i + 1) * xx, codeY);
 
      // 將產(chǎn)生的四個(gè)隨機(jī)數(shù)組合在一起。
      randomCode.append(strRand);
    }
    // 將四位數(shù)字的驗(yàn)證碼保存到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;
  }
  }

這個(gè)代碼就是生成驗(yàn)證圖片的基礎(chǔ)方法。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,大家也可以查看之前的文章進(jìn)行深入學(xué)習(xí)。

相關(guān)文章

最新評(píng)論