java 图片验证码的实现代码
makecertpic.java
package pic;
import java.awt.color;
import java.awt.font;
import java.awt.graphics;
import java.awt.image.bufferedimage;
import java.io.ioexception;
import java.io.outputstream;
import java.util.random;
import javax.imageio.imageio;
/**
* @author dzy
* 生成验证码图片
*/
public class makecertpic {
//验证码图片中可以出现的字符集,可根据需要修改
private char maptable[]={
'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'};
/**
* 功能:生成彩色验证码图片
* 参数width为生成图片的宽度,参数height为生成图片的高度,参数os为页面的输出流
*/
public string getcertpic(int width, int height, outputstream os) {
if(width<=0)width=60;
if(height<=0)height=20;
bufferedimage image = new bufferedimage(width, height,
bufferedimage.type_int_rgb);
// 获取图形上下文
graphics g = image.getgraphics();
// 设定背景色
g.setcolor(new color(0xdcdcdc));
g.fillrect(0, 0, width, height);
//画边框
g.setcolor(color.black);
g.drawrect(0,0,width-1,height-1);
// 取随机产生的认证码
string strensure = "";
// 4代表4位验证码,如果要生成更多位的认证码,则加大数值
for(int i=0; i<4; ++i) {
strensure+=maptable[(int)(maptable.length*math.random())];
}
// 将认证码显示到图像中,如果要生成更多位的认证码,增加drawstring语句
g.setcolor(color.black);
g.setfont(new font("atlantic inline",font.plain,18));
string str = strensure.substring(0,1);
g.drawstring(str,8,17);
str = strensure.substring(1,2);
g.drawstring(str,20,15);
str = strensure.substring(2,3);
g.drawstring(str,35,18);
str = strensure.substring(3,4);
g.drawstring(str,45,15);
// 随机产生10个干扰点
random rand = new random();
for (int i=0;i<10;i++) {
int x = rand.nextint(width);
int y = rand.nextint(height);
g.drawoval(x,y,1,1);
}
// 释放图形上下文
g.dispose();
try {
// 输出图像到页面
imageio.write(image, "jpeg", os);
} catch (ioexception e) {
return "";
}
return strensure;
}
}
在getcertpic()方法中,首先创建了一个内存图像的实例对象,再得到此内存图像的图形上下文对象,接着再用这个上下文对象画背景、边框。接下来,随机生成4个在maptable[]数组中的字符,组成字符串作为验证字符串,并输出在内存中,为了造成一定的干扰,随机画了10个干扰点,如果要加大干扰效果,可再多画一些点。
makecertpic.jsp页面用于调用生成验证码图片的javabean,并在客户端显示,源代码如下:
makecertpic.jsp
<%@page contenttype="image/jpeg" %>
<jsp:usebean id="image" scope="page" class="pic.makecertpic" />
<%
string str=image.getcertpic(0,0,response.getoutputstream());
// 将认证码存入session
session.setattribute("certcode", str);
out.clear();
out = pagecontext.pushbody();
%>
这里把生成的验证码作为session变量写入,因此在接收登录页面输入的数据页面中,可用用户输入的验证码和这个session变量作比较,如果相同则表示验证通过。
loginpic.jsp
<%@ page contenttype="text/html;charset=gb2312" %>
<script type="text/javascript">
function reloadcode(){
var verify=document.getelementbyid('code');
verify.setattribute('src','makecertpic.jsp?it='+math.random());
}
</script>
<html>
<head><title>登录页面</title></head>
<body>
<table align="center" border="0">
<tralign="center"><td><fontcolor="red"><html:errors/></font></td></tr>
<tr align="center"><td>系统登录</td></tr>
<form. action="logincheck.jsp" method="post" focus="username">
<tr><td>用户名:<input type="text" name="username"/></td></tr>
<tr><td>密 码:<input type="password"name="password"/></td></tr>
<tr><td>验证码<img src="makecertpic.jsp" id="code" onclick="reloadcode()" style="cursor: pointer;" alt="看不清楚,换一张"> </td></tr>
<tralign="left"><td>
<input type="submit" value="确定"/></td></tr>
</form>
</table>
</body>
</html>
验证码的输入是否正确可用如下语句验证:
string certcode=request.getparameter("certcode");
if(certcode.equals((string)session.getattribute("certcode")))
out.print("验证码输入正确");
else
out.print("验证码输入错误");