小編給大家分享一下Java中怎么實現(xiàn)一個驗證碼生成類,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
站在用戶的角度思考問題,與客戶深入溝通,找到白云鄂網(wǎng)站設(shè)計與白云鄂網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站設(shè)計制作、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名與空間、虛擬空間、企業(yè)郵箱。業(yè)務(wù)覆蓋白云鄂地區(qū)。本次和大家分享的是一個集成1:小寫拼音 2:大寫拼音 3:數(shù)字 4:漢字的驗證碼生成類,從標(biāo)題來看感覺很普通的樣子,沒錯的確很普通,只是這個驗證碼類生成的時候可以通過參數(shù)指定驗證碼返回格式的規(guī)則,更主要的是希望能給大家?guī)硪欢ǖ膶嵱眯?,本章例子也會有一個mvc使用驗證碼校驗的場景,希望大家能夠喜歡。
? 驗證碼生成流程圖
? 驗證碼生成池代碼的解析
? 把驗證代碼畫到圖片上
? mvc登錄操作測試驗證碼正確性
下面一步一個腳印的來分享:
? 驗證碼生成流程圖
首先,咋們來看一下本次分享的驗證碼生成類的生成流程圖:
能看到此圖描述的編碼生成池對應(yīng)的是幾個不同的編碼內(nèi)容,這里主要根據(jù)參數(shù)設(shè)置允許同時獲取不同編碼內(nèi)容,從而到達文字,拼音,漢字組合而成驗證碼,具體規(guī)則設(shè)置由參數(shù)而定;
? 驗證碼生成池代碼的解析
首先,由上面流程圖分析的內(nèi)容能看出,這個驗證碼生成池子需要并行獲取不同類型驗證碼數(shù)據(jù),才能滿足組合的驗證碼,因此有了下面的代碼:
////// 創(chuàng)建驗證碼 /// /// 1:小寫拼音 2:大寫拼音 3:數(shù)字 4:漢字 ///public static string CreateCode(string codeType = "1|2|3|4") { var code = string.Empty; try { if (string.IsNullOrWhiteSpace(codeType) || codeType.IndexOf('|') < 0) { codeType = "1|2|3|4"; } var codeTypeArr = codeType.Split(new char[] { '|' }, StringSplitOptions.RemoveEmptyEntries); var strLen = codeTypeArr.Length; //任務(wù) Task [] taskArr = new Task [strLen]; for (int i = 0; i < strLen; i++) { var val = codeTypeArr[i]; switch (val) { case "1": //小寫拼音 taskArr[i] = Task.Factory.StartNew (() => { return GetPinYinOrUpper(false); }); break; case "2": //大寫拼音 taskArr[i] = Task.Factory.StartNew (() => { return GetPinYinOrUpper(); }); break; case "3": //數(shù)字 taskArr[i] = Task.Factory.StartNew (() => { return GetShuZi(); }); break; case "4": //漢字 taskArr[i] = Task.Factory.StartNew (() => { return GetHanZi(); }); break; default: break; } } //等待完成 30s Task.WaitAll(taskArr, TimeSpan.FromSeconds(30)); foreach (var item in taskArr) { code += item.Result; } } catch (Exception ex) { code = "我愛祖國"; } return code; }
這里繼續(xù)使用了關(guān)鍵字Task,來分發(fā)任務(wù)獲取不同的驗證碼內(nèi)容,個人認為最主要的還是通過參數(shù)設(shè)置 string codeType = "1|2|3|4" ,來確定驗證碼的組合方式,這樣也達到了驗證碼格式的多樣性;
? 把驗證代碼畫到圖片上
首先,咋們要明確的是要吧文字畫在某個圖片上,那么需要用到Graphics關(guān)鍵字,以此來創(chuàng)建畫布把咋們的驗證編碼畫到圖片上,這里先上代碼:
////// 生成驗證碼圖片流 /// /// 驗證碼文字 ///流 public static byte[] CreateValidateCodeStream(string code = "我愛祖國", int fontSize = 18, int width = 0, int height = 0, string fontFamily = "華文楷體") { var bb = new byte[0]; //初始化畫布 var padding = 2; var len = code.Length; width = width <= 0 ? fontSize * 2 * (len - 1) + padding * 4 : width; height = height <= 0 ? fontSize * 2 : height; var image = new Bitmap(width, height); var g = Graphics.FromImage(image); try { var random = new Random(); //清空背景色 g.Clear(Color.White); //畫橫向中間干擾線 var x1 = 0; var y1 = height / 2; var x2 = width; var y2 = y1; g.DrawLine(new Pen(Color.DarkRed), x1, y1, x2, y2); //字體 var font = new Font(fontFamily, fontSize, (FontStyle.Bold | FontStyle.Italic)); var brush = new LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1f, true); //畫文字 var stringFomart = new StringFormat(); //垂直居中 stringFomart.LineAlignment = StringAlignment.Center; //水平居中 stringFomart.Alignment = StringAlignment.Center; var rf = new Rectangle(Point.Empty, new Size(width, height)); g.DrawString(code, font, brush, rf, stringFomart); //畫圖片的前景干擾點 for (int i = 0; i < 100; i++) { var x = random.Next(image.Width); var y = random.Next(image.Height); image.SetPixel(x, y, Color.FromArgb(random.Next())); } //畫圖片的邊框線 g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1); //保存圖片流 var stream = new MemoryStream(); image.Save(stream, ImageFormat.Jpeg); //輸出圖片流 bb = stream.ToArray(); } catch (Exception ex) { } finally { g.Dispose(); image.Dispose(); } return bb; }
這個列出畫驗證碼圖片方法的關(guān)鍵點:
1. 圖片的高和寬度需要設(shè)置,這個根據(jù)不同頁面布局方式而定,所以這里吧高和寬用作參數(shù)傳遞
2. 干擾線:通常驗證碼圖片都以一兩條干擾線,主要防止某些惡意用戶使用圖片識別軟件進行不正規(guī)破解請求,我這里干擾線只設(shè)置了橫向居中的一天直線代碼如: g.DrawLine(new Pen(Color.DarkRed), x1, y1, x2, y2);
3. 字體:一個好看的字體通常也一種用戶體驗,因此這里根據(jù)需要參數(shù)傳遞字體;
4. 驗證代碼位于圖片縱橫向居中,這里的關(guān)鍵代碼是:
var stringFomart = new StringFormat(); //垂直居中 stringFomart.LineAlignment = StringAlignment.Center; //水平居中 stringFomart.Alignment = StringAlignment.Center;
5. g.DrawString(code, font, brush, rf, stringFomart); 主要用來把文字畫到圖片上,這是最關(guān)鍵的地方
6. 咋們通常都是吧驗證碼弄成圖片流,而不是真的生成一個實體的驗證碼圖片保存到服務(wù)器上,不然這樣服務(wù)器很快就會磁盤不足,所以
//保存圖片流 var stream = new MemoryStream(); image.Save(stream, ImageFormat.Jpeg); //輸出圖片流 bb = stream.ToArray();
這句的重要性也不可忽視,主要就把畫的內(nèi)容保存到流中方便使用
7. 最后千萬不用忘了使用Dispose釋放畫布
? mvc登錄操作測試驗證碼正確性
有了上面驗證碼生成類生成好的驗證碼圖片,那么我們還需要測試驗證下正確性和效果;下面我們使用mvc架構(gòu)來做測試,先創(chuàng)建一個驗證碼測試Action并生成對應(yīng)試圖ValidCode.cshtml文件,然后自定義幾個不同格式的驗證碼獲取Action,代碼如下:
public FileResult GetValidateCode() { //返回的驗證碼文字 var code = string.Empty; var bb_code = ValidateCode.GetValidateCodeStream(ref code); return File(bb_code, "image/jpeg"); } public FileResult GetValidateCode01() { var code = string.Empty; var bb_code = ValidateCode.GetValidateCodeStream(ref code, "1|2|3|4"); return File(bb_code, "image/jpeg"); } public FileResult GetValidateCode02() { var code = string.Empty; var bb_code = ValidateCode.GetValidateCodeStream(ref code, "4|3|2|1"); return File(bb_code, "image/jpeg"); } public FileResult GetValidateCode03() { var code = string.Empty; var bb_code = ValidateCode.GetValidateCodeStream(ref code, "2|2|2|2"); return File(bb_code, "image/jpeg"); } public FileResult GetValidateCode04() { var code = string.Empty; var bb_code = ValidateCode.GetValidateCodeStream(ref code, "4|4|4|4"); return File(bb_code, "image/jpeg"); } public FileResult GetValidateCode05() { var code = string.Empty; var bb_code = ValidateCode.GetValidateCodeStream(ref code, "1|1|1|1"); return File(bb_code, "image/jpeg"); }
感覺上幾乎一模一樣,只是對應(yīng)的參數(shù)不一樣,這里遵循的方法GetValidateCodeStream參數(shù)codeType格式是:為空表示自由組合 1:小寫拼音 2:大寫拼音 3:數(shù)字 4:漢字;然后我們往試圖中填寫如下代碼:
神牛 - 驗證碼實例
全部隨機 | |
小寫|大寫|數(shù)字|漢字 | |
漢字|數(shù)字|大寫|小寫 | |
全部大寫 | |
全部漢字 | |
全部小寫 |
好了咋們生成下項目,看下效果圖如下:
能從圖中看到我們驗證碼格式的不同之處,這也是文章開頭說的驗證碼格式的多樣性,當(dāng)然可能還有其他組成格式請允許我暫時忽略,下面我們來做一個點擊圖片獲取新驗證碼的功能和點擊登錄按鈕去后臺程序判斷驗證碼是否匹配的例子,先來修改試圖界面代碼如下:
@{ ViewBag.Title = "ValidtCode"; }神牛 - 驗證碼實例
全部隨機 | |
小寫|大寫|數(shù)字|漢字 | |
漢字|數(shù)字|大寫|小寫 | |
全部大寫 | |
全部漢字 | |
全部小寫 |
然后在Controller中增加如下登錄驗證代碼:
public JsonResult UserLogin(string code) { var data = new Stage.Com.Extend.StageModel.MoData(); if (string.IsNullOrWhiteSpace(code)) { data.Msg = "驗證碼不能為空"; return Json(data); } var compareCode = Session["code"]; if (!compareCode.Equals(code)) { data.Msg = "驗證碼錯誤"; return Json(data); } data.IsOk = true; data.Msg = "驗證碼驗證成功"; return Json(data); } public FileResult GetValidateCode() { //返回的驗證碼文字 var code = string.Empty; var bb_code = ValidateCode.GetValidateCodeStream(ref code); var key = "code"; if (Session[key] != null) { Session.Remove(key); } Session[key] = code; return File(bb_code, "image/jpeg"); }
由于我這里無法截動態(tài)圖,所點擊測試獲取驗證碼我這里直接給出線上的一個例子,各位可以試試:http://lovexins.com:1001/home/ValidCode,點擊獲取新驗證碼的關(guān)鍵代碼是: $(this).attr("src", src); 重新給img元素的scr賦值,不過這里要注意由于瀏覽器緩存的原因,這里賦值的時候需要加上一個動態(tài)參數(shù),我這里是使用時間作為請求參數(shù),因此有了以下的代碼: $(this).attr("src") + "?t=" + nowTime; 這是特別的地方需要注意;好了咋們來直接測試登陸是否能從后端判斷驗證碼是否正確匹配吧,這里用的是session來保存獲取驗證碼圖片返回的驗證代碼,然后在登陸時候判斷用戶數(shù)據(jù)的驗證碼是否和后臺session的驗證一樣:
驗證失?。?/p>
驗證成功:
好了測試用例就這么多,如果您覺得我這個驗證碼生成例子還可以并且您希望使用那么請注意,參數(shù)的傳遞,不同得到的驗證碼格式不同,主要方法是:
////// 獲取驗證碼圖片流 /// /// 驗證碼個數(shù)(codeType設(shè)置 > codeLen設(shè)置) /// 為空表示自由組合 1:小寫拼音 2:大寫拼音 3:數(shù)字 4:漢字 ///public static byte[] GetValidateCodeStream(ref string code, string codeType = "", int codeLen = 0, int fontSize = 18, int width = 120, int height = 30) { //為空自由組合 if (string.IsNullOrWhiteSpace(codeType)) { for (int i = 0; i < codeLen; i++) { codeType += rm.Next(1, 5) + "|"; } } code = CreateCode(codeType); return CreateValidateCodeStream(code, fontSize, width: width, height: height); }
以上是Java中怎么實現(xiàn)一個驗證碼生成類的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!