溫馨提示×

溫馨提示×

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

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

java實(shí)現(xiàn)登錄驗(yàn)證碼

發(fā)布時間:2020-09-16 13:06:06 來源:腳本之家 閱讀:112 作者:紫薇帝星的故事 欄目:編程語言

本文實(shí)例為大家分享了java實(shí)現(xiàn)登錄驗(yàn)證碼的具體代碼,供大家參考,具體內(nèi)容如下

1、ValidateCode.java

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.util.Random;

import javax.imageio.ImageIO;
import javax.servlet.ServletException;

import org.springframework.stereotype.Service;


/**
 * 登錄驗(yàn)證碼
 *
 */
public class ValidateCode {
 
 /**
 * 得到驗(yàn)證碼圖片
 * @param out
 * @param number 驗(yàn)證數(shù)字
 * @throws ServletException
 * @throws IOException
 */
 public void getImage(OutputStream out,String number)
  throws ServletException, IOException {
 //0.創(chuàng)建空白圖片
 BufferedImage image=new BufferedImage(100,30,BufferedImage.TYPE_INT_RGB);
 //1.獲取圖片畫筆
 Graphics g = image.getGraphics();
 Random r=new Random();
 //2.設(shè)置畫筆顏色(Random類中的nextInt(n)返回一個大于等于0,小于n的隨機(jī)數(shù))
 g.setColor(new Color(r.nextInt(255),r.nextInt(255), r.nextInt(255)));
 //3.繪制矩形的背景
 g.fillRect(0, 0, 100, 30);
 //4.調(diào)用自定義的方法,獲取長度為4的字母數(shù)字組合的字符串
 g.setColor(new Color(0,0,0));
 g.setFont(new Font(null,Font.BOLD,24));
 //5.設(shè)置顏色字體后,繪制字符串(x/y,最左邊字符所處的位置)
 g.drawString(number, 20, 24);
 //6.繪制8條干擾線(alpha表示透明度)
 for(int i=0;i<8;i++){
  g.setColor(new Color(r.nextInt(255),r.nextInt(255), r.nextInt(255),r.nextInt(255)));
  g.drawLine(r.nextInt(100), r.nextInt(30), r.nextInt(100), r.nextInt(30));
 }
 ImageIO.write(image, "jpeg", out);
 }
 
 //自定義方法,獲取長度為size的字母數(shù)字組合的字符串
 public String getNumber(int size){
 String str="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
 String number="";
 Random r = new Random();
 for(int i=0;i<size;i++){
  number+=str.charAt(r.nextInt(str.length()));
 }
 return number;
 }

}

2、Controller

@RequestMapping(value = "/check",method={RequestMethod.GET})
 @ResponseBody
 public void check(HttpServletRequest req) {
 try {
  HttpServletResponse response = this.getResponse();
  response.setContentType("application/octet-stream");
  response.addHeader("Content-Disposition", "attachment;filename=" + "vcode.jpeg");
  String number = validateCode.getNumber(4);
  validateCode.getImage(response.getOutputStream(),number);
 } catch (Exception e) {
  
 }
 }

3、html

<img  src="http://127.0.0.1:8080/test/check">

效果圖

java實(shí)現(xiàn)登錄驗(yàn)證碼

更多關(guān)于驗(yàn)證碼的文章請點(diǎn)擊查看: 《java驗(yàn)證碼》

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

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

AI