驗證碼的應用在目前來講是很普遍的,主要用於登陸的時候進行相關驗證方面前端
一,先新建一個CodeUtil用於進行驗證碼的生成瀏覽器
public class CodeUtil {
// 驗證碼字符集
private static final char[] chars = {
'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'};
// 字符數量
private static final int SIZE = 4;
// 干擾線數量
private static final int LINES = 5;
// 寬度
private static final int WIDTH = 80;
// 高度
private static final int HEIGHT = 40;
// 字體大小
private static final int FONT_SIZE = 30;
/**
* 生成隨機驗證碼及圖片
* Object[0]:驗證碼字符串;
* Object[1]:驗證碼圖片。
*/
public static Object[] createImage() {
StringBuffer sb = new StringBuffer();
// 1.建立空白圖片
BufferedImage image = new BufferedImage(
WIDTH, HEIGHT, BufferedImage.TYPE_INT_RGB);
// 2.獲取圖片畫筆
Graphics graphic = image.getGraphics();
// 3.設置畫筆顏色
graphic.setColor(Color.LIGHT_GRAY);
// 4.繪製矩形背景
graphic.fillRect(0, 0, WIDTH, HEIGHT);
// 5.畫隨機字符
Random ran = new Random();
for (int i = 0; i <SIZE; i++) {
// 取隨機字符索引
int n = ran.nextInt(chars.length);
// 設置隨機顏色
graphic.setColor(getRandomColor());
// 設置字體大小
graphic.setFont(new Font(
null, Font.BOLD + Font.ITALIC, FONT_SIZE));
// 畫字符
graphic.drawString(
chars[n] + "", i * WIDTH / SIZE, HEIGHT*2/3);
// 記錄字符
sb.append(chars[n]);
}
// 6.畫干擾線
for (int i = 0; i < LINES; i++) {
// 設置隨機顏色
graphic.setColor(getRandomColor());
// 隨機畫線
graphic.drawLine(ran.nextInt(WIDTH), ran.nextInt(HEIGHT),
ran.nextInt(WIDTH), ran.nextInt(HEIGHT));
}
// 7.返回驗證碼和圖片
return new Object[]{sb.toString(), image};
}
/**
* 隨機取色
*/
public static Color getRandomColor() {
Random ran = new Random();
Color color = new Color(ran.nextInt(256),
ran.nextInt(256), ran.nextInt(256));
return color;
}
複製代碼
2、新建一個接口,用於獲取咱們上面生成的驗證碼bash
/**
* 獲取驗證碼
*
* @return
* @throws Exception
*/
@GetMapping("/getCode")
public Map getCode() {
//第一個參數是生成的驗證碼,第二個參數是生成的圖片
Object[] objs = CodeUtil.createImage();
//將生成的驗證碼發送到前端
String codes = (String) objs[0];
//將圖片輸出給瀏覽器
BufferedImage image = (BufferedImage) objs[1];
ByteArrayOutputStream out = new ByteArrayOutputStream();
try {
ImageIO.write(image, "png", out);
} catch (IOException e) {
log.error("驗證碼錯誤:" + e.getMessage());
}
byte[] bytes = out.toByteArray();
Map<String, Object> map = new HashMap<>();
map.put("codes", codes);
map.put("image", bytes);
return map;
}
複製代碼
3、因爲是get請求,因此咱們就直接用瀏覽器進行測試了,結果以下,返回的結果分別表示什麼我就再也不解釋了,自行查看代碼瞭解......app
注:若有須要,可自行轉載,可是要加上原創做者及原文章連接哦...dom