java隨機驗證碼生成實現實例代碼
摘要: 在項目中有很多情況下都需要使用到隨機驗證碼,這里提供一個java的隨機驗證碼生成方案,可以指定難度,生成的驗證碼可以很方便的和其他組件搭配
之前要使用一個生成隨機驗證碼的功能,在網上找了一下,有很多的人提出了不同的解決方案,但是很多人都使用了com.sun.image.這個包或者子包里面的類,而這個包結構下面的類都是不推薦使用的,我們應該依賴于java.或者javax.這些包結構下面的類,否則將來的可移植性就很不好(比如換成IBM的JDK就不行了),但是還是有人沒有用這些類也做成了的,所以我就在這些代碼的基礎上,修改了之后做成了下面的工具類,大家可以隨意使用,同時也歡迎提出改進意見。
在jdk1.7.45運行通過。
首先是驗證碼生成,可以選擇難度:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
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; } } |
下面是驗證碼的圖片生成,可以指定圖片的屬性和驗證碼內容:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
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管理會很方便,或者直接做成單例模式的也行),一個使用例子:
1
2
|
char [] charCode = randomCode.getSecurityCode( 6 , SecurityCodeLevel.Hard, true ); (提前聲明了的ByteArrayInputStream) inputStream = randomImage.getImage(charCode, 130 , 34 , 20 ); |
struts2返回響應配置
1
2
3
4
5
|
< result name = "stream" type = "stream" > < param name = "contentType" >image/jpeg</ param > < param name = "inputName" >inputStream</ param > < param name = "bufferSize" >2048</ param > </ result > |
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
原文鏈接:https://my.oschina.net/songxinqiang/blog/269070