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

溫馨提示×

溫馨提示×

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

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

java隨機驗證碼生成實現實例代碼

發布時間:2020-09-20 01:44:11 來源:腳本之家 閱讀:120 作者:lqh 欄目:編程語言

java隨機驗證碼生成實現實例代碼

摘要: 在項目中有很多情況下都需要使用到隨機驗證碼,這里提供一個java的隨機驗證碼生成方案,可以指定難度,生成的驗證碼可以很方便的和其他組件搭配

之前要使用一個生成隨機驗證碼的功能,在網上找了一下,有很多的人提出了不同的解決方案,但是很多人都使用了com.sun.image.這個包或者子包里面的類,而這個包結構下面的類都是不推薦使用的,我們應該依賴于java.或者javax.這些包結構下面的類,否則將來的可移植性就很不好(比如換成IBM的JDK就不行了),但是還是有人沒有用這些類也做成了的,所以我就在這些代碼的基礎上,修改了之后做成了下面的工具類,大家可以隨意使用,同時也歡迎提出改進意見。

        在jdk1.7.45運行通過。

        首先是驗證碼生成,可以選擇難度:

package cn.songxinqiang.tool.util;

import java.util.Arrays;

public class RandomSecurityCode {
 /**
 * 驗證碼難度級別,Simple只包含數字,Medium包含數字和小寫英文,Hard包含數字和大小寫英文
 */
 public enum SecurityCodeLevel {
 Simple, Medium, Hard
 };

 // 字符集合(除去易混淆的數字0、數字1、字母l、字母o、字母O)
 private final char[] CHAR_CODE = { '1', '2', '3', '4', '5', '6',
 '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
 'k', 'm', 'n', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y',
 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };

 /**
 * 產生默認驗證碼,4位中等難度<br>
 * 調用此方法和調用getSecurityCode(4, SecurityCodeLevel.Medium, false)有一樣的行為
 * 
 * @see #getSecurityCode(int, SecurityCodeLevel, boolean)
 * @return 驗證碼
 */
 public char[] getSecurityCode() {
 return getSecurityCode(4, SecurityCodeLevel.Medium, false);
 }

 /**
 * 獲取驗證碼,指定長度、難度、是否允許重復字符
 * 
 * @param length
 *   長度
 * @param level
 *   難度
 * @param isCanRepeat
 *   是否允許重復字符
 * @return 驗證碼
 */
 public char[] getSecurityCode(int length, SecurityCodeLevel level,
 boolean isCanRepeat) {
 // 隨機抽取len個字符
 int len = length;
 char[] code;

 // 根據不同的難度截取字符數組
 switch (level) {
 case Simple: {
 code = Arrays.copyOfRange(CHAR_CODE, 0, 9);
 break;
 }
 case Medium: {
 code = Arrays.copyOfRange(CHAR_CODE, 0, 33);
 break;
 }
 case Hard: {
 code = Arrays.copyOfRange(CHAR_CODE, 0, CHAR_CODE.length);
 break;
 }
 default: {
 code = Arrays.copyOfRange(CHAR_CODE, 0, CHAR_CODE.length);
 }
 }

 // 字符集合長度
 int n = code.length;

 // 拋出運行時異常
 if (len > n && isCanRepeat == false) {
 throw new RuntimeException(String.format(
  "調用SecurityCode.getSecurityCode(%1$s,%2$s,%3$s)出現異常,"
  + "當isCanRepeat為%3$s時,傳入參數%1$s不能大于%4$s", len,
  level, isCanRepeat, n));
 }
 // 存放抽取出來的字符
 char[] result = new char[len];
 // 判斷能否出現重復的字符
 if (isCanRepeat) {
 for (int i = 0; i < result.length; i++) {
 // 索引 0 and n-1
 int r = (int) (Math.random() * n);

 // 將result中的第i個元素設置為codes[r]存放的數值
 result[i] = code[r];
 }
 } else {
 for (int i = 0; i < result.length; i++) {
 // 索引 0 and n-1
 int r = (int) (Math.random() * n);

 // 將result中的第i個元素設置為codes[r]存放的數值
 result[i] = code[r];

 // 必須確保不會再次抽取到那個字符,因為所有抽取的字符必須不相同。
 // 因此,這里用數組中的最后一個字符改寫codes[r],并將n減1
 code[r] = code[n - 1];
 n--;
 }
 }
 return result;
 }
}

下面是驗證碼的圖片生成,可以指定圖片的屬性和驗證碼內容:

package cn.songxinqiang.tool.util;

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Random;

import javax.imageio.ImageIO;

/**
 * 驗證碼圖片生成工具類
 * 
 * @since sxq-tool-1.0.2
 * @date 2014年3月11日 上午10:48:02
 * @author 宋信強
 * @mail songxinqiang@vip.qq.com
 */
public class RandomSecurityImage {

 private Random random = new Random();

 private Font font = new Font("Fixedsys", Font.CENTER_BASELINE, 18);

 /**
 * 根據指定的字符和大小生成隨機驗證碼圖片
 * @param code 需要繪制到圖片上的字符數組
 * @param width 圖片寬度
 * @param height 圖片高度
 * @param line 干擾線數量
 * @return 圖片的輸入流
 */
 public ByteArrayInputStream getImage(char[] code, int width,
 int height, int line) {
 // BufferedImage類是具有緩沖區的Image類,Image類是用于描述圖像信息的類
 BufferedImage image = new BufferedImage(width, height,
 BufferedImage.TYPE_INT_BGR);
 Graphics g = image.getGraphics();
 g.fillRect(0, 0, width, height);
 g.setFont(new Font("Times New Roman", Font.ROMAN_BASELINE, 18));
 g.setColor(getRandColor(110, 133));
 // 繪制干擾線
 for (int i = 0; i < line; i++) {
 drowLine(g, width, height);
 }
 // 繪制隨機字符
 for (int i = 0; i < code.length; i++) {
 drowChar(g, width / code.length * i, random.nextInt(height / 3)
  + height / 3, code[i]);
 }
 g.dispose();

 return convertImageToStream(image);
 }

 /**
 * 將BufferedImage轉換成ByteArrayInputStream
 * 
 * @param image
 *   圖片
 * @return ByteArrayInputStream 流
 */
 private ByteArrayInputStream convertImageToStream(BufferedImage image) {
 ByteArrayInputStream inputStream = null;
 ByteArrayOutputStream bos = new ByteArrayOutputStream();
 try {
 ImageIO.write(image, "JPEG", bos);
 byte[] bts = bos.toByteArray();
 inputStream = new ByteArrayInputStream(bts);
 } catch (IOException e1) {
 }
 return inputStream;
 }

 /*
 * 獲得顏色
 */
 private Color getRandColor(int fc, int bc) {
 if (fc > 255) {
 fc = 255;
 }
 if (bc > 255) {
 bc = 255;
 }
 int r = fc + random.nextInt(bc - fc - 16);
 int g = fc + random.nextInt(bc - fc - 14);
 int b = fc + random.nextInt(bc - fc - 18);
 return new Color(r, g, b);
 }

 /*
 * 繪制字符
 */
 private char drowChar(Graphics g, int x, int y, char code) {
 g.setFont(font);
 g.setColor(getRandColor(10, 200));
 g.translate(random.nextInt(3), random.nextInt(3));
 g.drawString(code + "", x, y);
 return code;
 }

 /*
 * 繪制干擾線
 */
 private void drowLine(Graphics g, int width, int height) {
 int x = random.nextInt(width);
 int y = random.nextInt(height);
 int xl = random.nextInt(width / 2);
 int yl = random.nextInt(height / 2);
 g.drawLine(x, y, x + xl, y + yl);
 }
}

在使用上,要先生成工具類的對象(使用spring管理會很方便,或者直接做成單例模式的也行),一個使用例子:

char[] charCode = randomCode.getSecurityCode(6, SecurityCodeLevel.Hard,true);
(提前聲明了的ByteArrayInputStream) inputStream = randomImage.getImage(charCode, 130, 34, 20);

struts2返回響應配置

<result name="stream" type="stream">
 <param name="contentType">image/jpeg</param>
 <param name="inputName">inputStream</param>
 <param name="bufferSize">2048</param>
</result>

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

向AI問一下細節

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

AI

哈尔滨市| 华安县| 郯城县| 锦屏县| 河南省| 剑阁县| 牟定县| 安宁市| 龙游县| 江都市| 长阳| 天峨县| 泰宁县| 城市| 沐川县| 鄂伦春自治旗| 石阡县| 南京市| 吉木乃县| 嵊州市| 额敏县| 虹口区| 安阳市| 贵阳市| 台东市| 丰台区| 河北区| 抚宁县| 石景山区| 宝坻区| 新余市| 罗甸县| 达州市| 徐闻县| 商河县| 安阳县| 磐安县| 阿拉善右旗| 孟连| 天等县| 双鸭山市|