java 验证码 全部代码

package com.zb.ssi.util;   //包名
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;
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;
   }

}



makeCertPic.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@page contentType="image/jpeg" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'makeCertPic.jsp' starting page</title>
    
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">

  </head>
 
  <body>
        <jsp:useBean id="image" scope="page" class="com.zb.ssi.util.makeCertPic" />
  <%
    String str=image.getCertPic(0,0,response.getOutputStream());
    session.setAttribute("certCode", str);

     out.clear();
     out = pageContext.pushBody();
%>
  </body>
</html>

LoginPic.jsp

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
    <head>
        <base href="<%=basePath%>">

        <title>My JSP 'LoginPic.jsp' starting page</title>

        <meta http-equiv="pragma" content="no-cache">
        <meta http-equiv="cache-control" content="no-cache">
        <meta http-equiv="expires" content="0">
        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
        <meta http-equiv="description" content="This is my page">
        <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->

    </head>
    <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>
                        密&nbsp;&nbsp;码:
                        <input type="password" name="password" />
                    </td>
                </tr>
                <tr>
                    <td>
                        验证码
                        <img src="makeCertPic.jsp" id="code" οnclick="reloadcode()"
                            style="cursor: pointer;" alt="看不清楚,换一张">
                    </td>
                </tr>
                <tralign="left">
                <td>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    <input type="submit" value="确定" />
                </td>
                </tr>
                </form>
            </table>
        </body>
    </html>






























评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值