新建JSP文件 如code.jsp
復(fù)制如下代碼
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"
import="java.io.*,
java.util.*,
com.sun.image.codec.jpeg.*,
java.awt.*,
java.awt.image.*"%>
<%
String s = "";
int intCount = 0;
/**
* 驗(yàn)證碼寬度
*/
int width=113;
/**
* 驗(yàn)證碼高度
*/
int height=30;
/**
* 驗(yàn)證碼字符集
*/
char[] code=new char[]{
'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',
'2','3','4','5','6','7','8','9'};
/**
*? 創(chuàng)建一個(gè)隨機(jī)數(shù)生成器類
*/
Random random = new Random();
// 隨機(jī)產(chǎn)生codeCount數(shù)字的驗(yàn)證碼沮榜。
for (int i = 0; i < 4; i++) {
// 得到隨機(jī)產(chǎn)生的驗(yàn)證碼數(shù)字戚绕。
String strRand = String.valueOf(code[random.nextInt(code.length)]);
// 將產(chǎn)生的四個(gè)隨機(jī)數(shù)組合在一起而叼。
s=s+strRand;
}
// 保存入session,用于與用戶的輸入進(jìn)行比較.
// 注意比較完之后清除session.
session.setAttribute("validateCode", s);
response.setContentType("image/gif");
// 定義圖像buffer
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics2D gra = image.createGraphics();
// 將圖像填充為白色
gra.setColor(Color.WHITE);
gra.fillRect(0, 0, width, height);
// 創(chuàng)建字體,字體的大小應(yīng)該根據(jù)圖片的高度來定碾阁。
//字體對(duì)象構(gòu)造方法public Font(String familyName,int style,int size)
// familyName字體名;字體名可以分成兩大類:中文字體:宋體、楷體氯哮、黑體等;英文字體:Arial商佛、Times New Roman等等喉钢;
// style風(fēng)格。PLAIN普通字體良姆,BOLD(加粗)肠虽,ITALIC(斜體),F(xiàn)ont.BOLD+ Font.ITALIC(粗斜體)
//size 大小
Font font = new Font("宋體", Font.BOLD+Font.ITALIC, height-1);//
// 設(shè)置字體玛追。
gra.setFont(font);
// 畫邊框税课。
gra.setColor(getColor());
gra.drawRect(0, 0, width - 1, height - 1);
// 隨機(jī)產(chǎn)生干擾線,使圖象中的認(rèn)證碼不易被其它程序探測(cè)到痊剖。
gra.setColor(Color.BLACK);
for (int i = 0; i < 50; i++) {
int x = random.nextInt(width);
int y = random.nextInt(height);
int xl = random.nextInt(5);
int yl = random.nextInt(5);
gra.setColor(getColor());
gra.drawLine(x, y, x + xl, y + yl);
}
// 輸出數(shù)字
char c;
for (int i = 0; i < 4; i++) {
c = s.charAt(i);
gra.drawString(c + "", i * 25 + 4, 25); // 25為寬度韩玩,11為上下高度位置
}
OutputStream toClient = response.getOutputStream();
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(toClient);
encoder.encode(image);
toClient.close();
out.clear();
out = pageContext.pushBody();
%>
<%!
private Color getColor()
{
Random random = new Random();
int red = 0, green = 0, blue = 0;
// 產(chǎn)生隨機(jī)的顏色分量來構(gòu)造顏色值,這樣輸出的每位數(shù)字的顏色值都將不同陆馁。
red = random.nextInt(255);
green = random.nextInt(255);
blue = random.nextInt(255);
return new Color(red,green,blue);
}
%>
session名為 validateCode
可在上面代碼:
session.setAttribute("validateCode", s);
中定義
引用方式:
<img src="code.jsp">
可添加樣式控制大小? 建議配合點(diǎn)擊刷新事件引用
最后強(qiáng)調(diào)一下 調(diào)用jsp生成驗(yàn)證碼后 值自動(dòng)存在session中 默認(rèn)為validateCode
?