91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

java仿Servlet生成驗證碼實例詳解

發布時間:2020-09-15 19:14:18 來源:腳本之家 閱讀:151 作者:lqh 欄目:編程語言

java仿Servlet生成驗證碼實例詳解

實現原理:使用BufferedImage對象的Graphics來進行繪制,然后輸出成一張圖片進行保存

實現代碼及詳解:

public class validateCode{

  private static Random rand = new Random();

  public static void main(String[] args){
    int val1 = rand.nextInt(9);
    int val2 = rand.nextInt(9);
    int val3 = rand.nextInt(9);
    int val4 = rand.nextInt(9);
    String val = val1 + " " + val2 + " " + val3 + " " + val4'
    BufferedImage buf = drawImage(val);
    //將最終的圖片保存到D://cheng.png下
    ImageIO.write(buf,"png",new File("D://cheng.png");
  }

  public static BufferedImage drawImage(String code){
    int height = 30;
    int width = 60;
    BufferedImage buf = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
    Graphics2D gs = buf.createGraphics();
    gs.setBackground(Color.black);
    gs.drawRect(0,0,width,height); 

    //繪制隨機干擾線
    int total = 100;
    drawRandLine(gs,total);

    //繪制驗證碼
    Font font = new Font("行楷",Font.BOLD,20);
    gs.setFont(font);
    gs.setColor(getRandColor(155,255));
    gs.drawString(code,5,20);

    return buf;
  }

  public static void drawRandLine(Graphics2D gs,int total){

    for(int i=0; i<total; i++){
      int x1 = rand.nextInt(width);
      int x2 = rand.nextInt(width);
      int y1 = rand.nextInt(height);
      int y2 = rand.nextInt(height);
      //設置隨機顏色
      gs.setColor(getRandColor(0,155));
      gs.drawLine(x1,y1,x2,y2);
    }  
  }

  public static Color getRandColor(int from,int to){

    int r = from + rand.nextInt(to-from);
    int g = from + rand.nextInt(to-from);
    int b = from + rand.nextInt(to-from);
    return new Color(r,g,b);  
  }

最終實現效果圖

java仿Servlet生成驗證碼實例詳解

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節
推薦閱讀:
  1. Servlet 詳解
  2. Servlet詳解

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

AI

永川市| 石嘴山市| 瓦房店市| 青河县| 榆中县| 海盐县| 广水市| 广宁县| 高密市| 万盛区| 收藏| 志丹县| 茌平县| 寿阳县| 武隆县| 高邑县| 竹山县| 青海省| 定兴县| 榆树市| 吴桥县| 晋中市| 张北县| 松桃| 甘孜| 高台县| 琼结县| 舞钢市| 洞头县| 宣化县| 那坡县| 南川市| 抚松县| 丹凤县| 枣庄市| 吉木乃县| 贵定县| 枣阳市| 阿合奇县| 金乡县| 鲁甸县|