jsp+javascript製作驗證碼
可以在不重新整理整個頁面的情況下重新整理驗證碼。
validatecode.jsp:
<%@ page contentType="image/jpeg"
import="java.util.*,java.awt.*,java.awt.image.*,javax.imageio.*"
pageEncoding="UTF-8"%>
<!-- 定義隨機生成的字元陣列 -->
<%!char[] code = { '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', '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', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };%>
<!-- 建立隨機數生成器 -->
<%!Random rand = new Random();%>
<!-- 定義獲取指定範圍內的隨機顏色 -->
<%!Color getRandColor(int fc, int bc) {
if (fc > 255) {
fc = 255;
}
if (bc > 255) {
bc = 255;
}
int n = Math.abs(fc - bc);
int r = fc + rand.nextInt(n);
int g = fc + rand.nextInt(n);
int b = fc + rand.nextInt(n);
return new Color(r, g, b);
}%>
<!-- 獲取隨機顏色 -->
<%!Color getRandColor() {
return getRandColor(0, 255);
}%>
<%
// 設定頁面,禁止影象快取
response.setHeader("Pragma", "No-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
int width = 80; // 影象寬度
int height = 20; // 影象高度
int codeCount = 4; // 驗證碼長度
// 建立影象image
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics2D g = image.createGraphics();
// 設定背景顏色
g.setColor(getRandColor(216, 250));
g.fillRect(0, 0, width, height);
// 設定字型
g.setFont(new Font("Times New Roman", Font.PLAIN, height - 2));
// 設定邊框
//g.setColor(Color.BLACK);
//g.drawRect(0, 0, width - 1, height - 1);
// 隨機生成160條干擾線
g.setColor(getRandColor(180, 200));
for (int i = 0; i < 160; i++) {
int x = rand.nextInt(width);
int y = rand.nextInt(height);
int xl = rand.nextInt(12);
int yl = rand.nextInt(12);
g.drawLine(x, y, x + xl, y + yl);
}
// 用一個randomCode來儲存驗證碼
StringBuffer randomCode = new StringBuffer();
// 隨機生成驗證碼
for (int i = 0; i < codeCount; i++) {
String randStr = String.valueOf(code[rand.nextInt(62)]);
g.setColor(getRandColor());
g.drawString(randStr, (rand.nextFloat() + 18) * i + 5, (rand
.nextFloat() + 3.5f) * 4);
randomCode.append(randStr); // 將隨機產生的字元合成一個字串
}
// 將產生的驗證碼儲存到session中
session.setAttribute("validatecode", randomCode.toString());
// 使影象生效
g.dispose();
// 將影象輸出到頁面
ImageIO.write(image, "JPEG", response.getOutputStream());
response.getOutputStream().close();
%>
usingvalidatecode.jsp
<body>
<script type="text/javascript">
function show(o){
// 重新載入驗證碼
var timenow = new Date().getTime();
o.src="../include/validatecode.jsp?d="+timenow;
}
</script>
驗證碼:<html:text property="validatecode" size="4" />
<img src="validatecode.jsp" name="rand" id="rand" />
<a href="javascript:show(document.getElementById('rand'))">看不清?</a>
</body>
結果:只要單擊“看不清?”這個連結的時候就會自動重新整理頁面上的驗證碼圖片而不必重新整理整個頁面。希望那些和我一樣還屬於菜鳥的人能得到幫助。
問題的提出:需求->要求單擊圖片或者某個連結就能實現驗證碼圖片重新整理而不需重新整理整個頁面。
解決過程:1.在網上找資料,在這要感謝liam168,是他那篇AJAX+jsp無重新整理驗證碼例項 幫助我解決這個問題的。2.上論壇求助,只要你問的問題不是很幼稚,論壇上的大佬都會幫你解決的,當然不要忘記結帳。
validatecode.jsp:
<%@ page contentType="image/jpeg"
import="java.util.*,java.awt.*,java.awt.image.*,javax.imageio.*"
pageEncoding="UTF-8"%>
<!-- 定義隨機生成的字元陣列 -->
<%!char[] code = { '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', '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', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };%>
<!-- 建立隨機數生成器 -->
<%!Random rand = new Random();%>
<!-- 定義獲取指定範圍內的隨機顏色 -->
<%!Color getRandColor(int fc, int bc) {
if (fc > 255) {
fc = 255;
}
if (bc > 255) {
bc = 255;
}
int n = Math.abs(fc - bc);
int r = fc + rand.nextInt(n);
int g = fc + rand.nextInt(n);
int b = fc + rand.nextInt(n);
return new Color(r, g, b);
}%>
<!-- 獲取隨機顏色 -->
<%!Color getRandColor() {
return getRandColor(0, 255);
}%>
<%
// 設定頁面,禁止影象快取
response.setHeader("Pragma", "No-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
int width = 80; // 影象寬度
int height = 20; // 影象高度
int codeCount = 4; // 驗證碼長度
// 建立影象image
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics2D g = image.createGraphics();
// 設定背景顏色
g.setColor(getRandColor(216, 250));
g.fillRect(0, 0, width, height);
// 設定字型
g.setFont(new Font("Times New Roman", Font.PLAIN, height - 2));
// 設定邊框
//g.setColor(Color.BLACK);
//g.drawRect(0, 0, width - 1, height - 1);
// 隨機生成160條干擾線
g.setColor(getRandColor(180, 200));
for (int i = 0; i < 160; i++) {
int x = rand.nextInt(width);
int y = rand.nextInt(height);
int xl = rand.nextInt(12);
int yl = rand.nextInt(12);
g.drawLine(x, y, x + xl, y + yl);
}
// 用一個randomCode來儲存驗證碼
StringBuffer randomCode = new StringBuffer();
// 隨機生成驗證碼
for (int i = 0; i < codeCount; i++) {
String randStr = String.valueOf(code[rand.nextInt(62)]);
g.setColor(getRandColor());
g.drawString(randStr, (rand.nextFloat() + 18) * i + 5, (rand
.nextFloat() + 3.5f) * 4);
randomCode.append(randStr); // 將隨機產生的字元合成一個字串
}
// 將產生的驗證碼儲存到session中
session.setAttribute("validatecode", randomCode.toString());
// 使影象生效
g.dispose();
// 將影象輸出到頁面
ImageIO.write(image, "JPEG", response.getOutputStream());
response.getOutputStream().close();
%>
usingvalidatecode.jsp
<body>
<script type="text/javascript">
function show(o){
// 重新載入驗證碼
var timenow = new Date().getTime();
o.src="../include/validatecode.jsp?d="+timenow;
}
</script>
驗證碼:<html:text property="validatecode" size="4" />
<img src="validatecode.jsp" name="rand" id="rand" />
<a href="javascript:show(document.getElementById('rand'))">看不清?</a>
</body>
結果:只要單擊“看不清?”這個連結的時候就會自動重新整理頁面上的驗證碼圖片而不必重新整理整個頁面。希望那些和我一樣還屬於菜鳥的人能得到幫助。
問題的提出:需求->要求單擊圖片或者某個連結就能實現驗證碼圖片重新整理而不需重新整理整個頁面。
解決過程:1.在網上找資料,在這要感謝liam168,是他那篇AJAX+jsp無重新整理驗證碼例項 幫助我解決這個問題的。2.上論壇求助,只要你問的問題不是很幼稚,論壇上的大佬都會幫你解決的,當然不要忘記結帳。
相關文章
- PHP驗證碼的製作PHP
- Java製作驗證碼的完整程式碼Java
- java實現動態驗證碼原始碼——繪製驗證碼的jspJava原始碼JS
- 用Python製作圖片驗證碼,這三行程式碼完事兒Python行程
- 短視訊app製作,驗證碼輸入時間倒數計時APP
- 用 python 製作全國身份證號驗證及查詢系統Python
- 零基礎如何製作易語言網路驗證註冊碼系統?
- 驗證碼原理及驗證
- SSL認證失敗,製作證書
- 驗證碼---js重新整理驗證碼JS
- Mac 上製作 SSL 證書Mac
- JavaScript驗證碼生成和驗證效果JavaScript
- 驗證碼機制之驗證碼重複使用
- 登入驗證碼生成kaptcha(輸入驗證碼)APT
- 製作 JavaScript 測驗表 demoJavaScript
- Laravel - 驗證碼Laravel
- PHP驗證碼PHP
- 驗證碼程式
- OPENSSL 製作 Ikev2證書
- easy-captcha實現驗證碼驗證APT
- 影片直播app原始碼,傳送驗證碼 驗證碼識別APP原始碼
- PHP 驗證身份證號碼PHP
- 1.6.4. 作業系統驗證作業系統
- PPT課件的製作經驗
- 【驗證碼逆向專欄】某驗“初代”滑塊驗證碼逆向分析
- 精確驗證身份證號碼程式碼
- 隨機驗證碼隨機
- django 驗證碼框架Django框架
- laravel(五) 驗證碼Laravel
- Laravel - 驗證碼(captcha)LaravelAPT
- 驗證碼識別
- 作業系統身份驗證和口令檔案身份驗證總結作業系統
- 身份證號碼驗證系統
- 身份證號碼之js驗證JS
- PHP算式驗證碼和漢字驗證碼的實現方法PHP
- 【驗證碼逆向專欄】某驗三代滑塊驗證碼逆向分析
- 【驗證碼逆向專欄】某驗四代滑塊驗證碼逆向分析
- Java 驗證碼、二維碼Java