麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 編程 > Java > 正文

Java實現(xiàn)驗證碼具體代碼

2019-11-26 15:51:14
字體:
供稿:網(wǎng)友

這里實現(xiàn)我使用到了struts2模擬一個登錄功能來驗證java實現(xiàn)的驗證碼功能。

Java實現(xiàn)驗證碼的步驟:

1、創(chuàng)建RandomImageGenerator.java類,該類實現(xiàn)驗證碼圖片的生成

2、創(chuàng)建一個servlet類,RandomImageServlet.java,將生成的驗證碼輸出到頁面

3、創(chuàng)建一個Action類,LoginAction.java,控制登錄

4、配置struts.xml一個web.xml文件

5、編寫頁面

具體實現(xiàn)用代碼表達

1、創(chuàng)建RandomImageGenerator.java類

復制代碼 代碼如下:

package com.tenghu.code;

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Random;
import javax.imageio.ImageIO;

/**
 * 驗證碼生成類
 * @author xiaohu
 *
 */
public class RandomImageGenerator {
 //創(chuàng)建Random對象
 static Random random=new Random();
 //隨機生成包含驗證碼字符串
 public static String random(int num){
  //初始化種子
  String[] str={"0","1","2","3","4","5","6","7","8","9",
       "a","b","c","d","e","f","g","h","i","j",
       "k","l","m","n","p","q","r","s","t"};
  int number=str.length;
  //接收隨機字符
  String text = "";
  //隨機產(chǎn)生4個字符的字符串
  for(int i=0;i<num;i++){
   text+=str[random.nextInt(number)];
  }
  return text;
 }
 /**
  * 隨機產(chǎn)生定義的顏色
  *
  * @return
  */
 private static Color getRandColor() {
  Random random = new Random();
  Color color[] = new Color[10];
  color[0] = new Color(32, 158, 25);
  color[1] = new Color(218, 42, 19);
  color[2] = new Color(31, 75, 208);
  color[3] = new Color(0, 102, 182);
  color[4] = new Color(171, 0, 85);
  return color[random.nextInt(5)];
 }
 /**
  * 產(chǎn)生隨機字體
  *
  * @return
  */
 private static Font getFont() {
  Random random = new Random();
  Font font[] = new Font[5];
  font[0] = new Font("Ravie", Font.BOLD, 30);
  font[1] = new Font("Antique Olive Compact", Font.BOLD, 30);
  font[2] = new Font("Forte", Font.BOLD, 30);
  font[3] = new Font("Wide Latin", Font.BOLD, 30);
  font[4] = new Font("Gill Sans Ultra Bold", Font.BOLD, 30);
  return font[random.nextInt(5)];
 }
 /**
  * 生成圖片
  * @throws IOException
  */
 public static void render(String randomStr,OutputStream out,int width,int height) throws IOException{
  //在內(nèi)存中創(chuàng)建圖像
  BufferedImage bi=new BufferedImage(width, height, BufferedImage.TYPE_BYTE_INDEXED);
  //獲取圖形上下文
  Graphics2D g=(Graphics2D) bi.getGraphics();
  //話邊框
  g.setColor(Color.white);
  g.fillRect(0, 0, width, height);
  g.setFont(getFont());
  g.setColor(Color.BLACK);
  //畫認證碼,每個認證碼在不同的水平位置
  String str1[]=new String[randomStr.length()];
  for(int i=0;i<str1.length;i++){
   str1[i]=randomStr.substring(i,i+1);
   int w=0;
   int x=(i+1)%3;
   //隨機生成驗證碼字符水平偏移量
   if(x==random.nextInt(7)){
    w=30-random.nextInt(7);
   }else{
    w=30+random.nextInt(7);
   }
   //隨機生成顏色
   g.setColor(getRandColor());
   g.drawString(str1[i], 20*i+10, w);
  }
  //隨機產(chǎn)生干擾點,并用不同的顏色表示,事圖像的認證碼不易被其他程序探測到
  for(int i=0;i<100;i++){
   int x=random.nextInt(width);
   int y=random.nextInt(height);
   Color color=new Color(random.nextInt(255), random.nextInt(255), random.nextInt(255));
   //隨機畫各種顏色的線
   g.setColor(color);
   g.drawOval(x, y, 0, 0);
  }
  //畫干擾線
  for(int i=0;i<15;i++){
   int x=random.nextInt(width);
   int y=random.nextInt(height);
   int x1=random.nextInt(width);
   int y1=random.nextInt(height);
   Color color=new Color(random.nextInt(255), random.nextInt(255), random.nextInt(255));
   //隨機畫各種顏色線
   g.setColor(color);
   g.drawLine(x, y, x1, y1);
  }
  //圖像生效
  g.dispose();
  //輸出頁面
  ImageIO.write(bi, "jpg", out);
 }
 public static void main(String[] args) throws FileNotFoundException, IOException {
  //獲取隨機字符串
  String randomStr=random(5);
  System.out.println(randomStr);
  //生成圖片
  render(randomStr, new FileOutputStream("D://test.jpg"),130,40);
 }
}

2、創(chuàng)建RandomImageServlet.java

復制代碼 代碼如下:

package com.tenghu.code.servlet;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import com.tenghu.code.RandomImageGenerator;

public class RandomImageServlet extends HttpServlet {
 //圖片寬度
 int width=0;
 //圖片高度
 int height=0;
 //圖片上隨機字符個數(shù)
 int randomStrNum=0;
 public void destroy() {
 }
 public void doGet(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {
  doPost(request, response);
 }
 public void doPost(HttpServletRequest request, HttpServletResponse response)
   throws ServletException, IOException {
  request.setCharacterEncoding("UTF-8");
  //獲取HttpSession對象
  HttpSession session=request.getSession();
  //獲取隨機字符串
  String randomStr=RandomImageGenerator.random(randomStrNum);
  if(null!=session){
   //設置參數(shù)
   session.setAttribute("randomStr", randomStr);
   //設置響應類型,輸出圖片客戶端不緩存
   response.setDateHeader("Expires", 1L); 
   response.setHeader("Cache-Control", "no-cache, no-store, max-age=0");
   response.addHeader("Pragma", "no-cache");
   response.setContentType("image/jpeg"); 
   //輸出到頁面
   RandomImageGenerator.render(randomStr, response.getOutputStream(), width, height);
  }
 }
 public void init() throws ServletException {
  //獲取寬度
  width=Integer.parseInt(this.getInitParameter("width"));
  //獲取高度
  height=Integer.parseInt(this.getInitParameter("height"));
  //獲取個數(shù)
  randomStrNum=Integer.parseInt(this.getInitParameter("num"));
 }
}   

3、創(chuàng)建LoginAction.java類

復制代碼 代碼如下:

package com.tenghu.code.action;

import java.io.ByteArrayInputStream;
import java.io.InputStream;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

public class LoginAction extends ActionSupport{
 //用戶名
 private String userName;
 //密碼
 private String password;
 //驗證碼
 private String code;
 private InputStream inputStream;
 public InputStream getResult(){
  return inputStream;
 }
 //成功
 public String success() throws Exception{
  return SUCCESS;
 }
 //測試登錄
 public String testLogin() throws Exception{
  //獲取圖片的驗證碼
  String randomStr=(String) ActionContext.getContext().getSession().get("randomStr");
  if(code.trim().equalsIgnoreCase(randomStr)){
   if("admin".equals(userName.trim())&&"admin".equals(password.trim())){
    //成功
    inputStream=new ByteArrayInputStream("1".getBytes("UTF-8"));
   }else{
    //用戶名或密碼錯誤
    inputStream=new ByteArrayInputStream("2".getBytes("UTF-8"));
   }
  }else{
   //驗證碼錯誤
   inputStream=new ByteArrayInputStream("0".getBytes("UTF-8"));
  }
  return "result";
 }
 public String getUserName() {
  return userName;
 }
 public void setUserName(String userName) {
  this.userName = userName;
 }
 public String getPassword() {
  return password;
 }
 public void setPassword(String password) {
  this.password = password;
 }
 public String getCode() {
  return code;
 }
 public void setCode(String code) {
  this.code = code;
 }
}

4、配置struts.xml、web.xml文件

復制代碼 代碼如下:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
 "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
 "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts> 
 <package name="installs" extends="struts-default">
  <action name="login" class="com.tenghu.code.action.LoginAction">
   <!-- 登錄成功到success.jsp頁面 -->
   <result name="success">success.jsp</result>
   <!-- 登錄驗證返回的數(shù)據(jù) -->
   <result name="result" type="stream">
    <param name="contentType">text/html</param>
    <param name="inputName">result</param>
   </result>
  </action>
 </package>
</struts>

復制代碼 代碼如下:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
 xmlns="http://java.sun.com/xml/ns/javaee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
 http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <servlet>
    <description>This is the description of my J2EE component</description>
    <display-name>This is the display name of my J2EE component</display-name>
    <servlet-name>RandomImageServlet</servlet-name>
    <servlet-class>com.tenghu.code.servlet.RandomImageServlet</servlet-class>
    <!-- 初始化圖片寬度 -->
    <init-param>
     <param-name>width</param-name>
     <param-value>130</param-value>
    </init-param>
    <!-- 初始化圖片高度 -->
    <init-param>
     <param-name>height</param-name>
     <param-value>40</param-value>
    </init-param>
    <!-- 初始化圖片隨機數(shù)個數(shù) -->
    <init-param>
     <param-name>num</param-name>
     <param-value>4</param-value>
    </init-param>
  </servlet>

  <servlet-mapping>
    <servlet-name>RandomImageServlet</servlet-name>
    <url-pattern>/verification.do</url-pattern>
  </servlet-mapping>
  <!-- 配置struts核心過濾器 -->
  <filter>
   <filter-name>struts2</filter-name>
   <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>
  <filter-mapping>
   <filter-name>struts2</filter-name>
   <url-pattern>/*</url-pattern>
  </filter-mapping>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

5、編寫測試頁面

復制代碼 代碼如下:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">

    <title>My JSP 'index.jsp' starting page</title>
 <script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
 <script type="text/javascript" src="js/jquery.form.js"></script>
 <script type="text/javascript">
  $(document).ready(function(){
   CODE.initCode();
   //驗證輸入
   function checkInput(){
    if($('#userName').val()==''){
     alert('用戶名不能為空!');
     return false;
    }
    if($('#password').val()==''){
     alert('密碼不能為空!');
     return false;
    }
    if($('#code').val()==''){
     alert('驗證碼不能為空!');
     return false;
    }
    return true;
   }

   //點擊按鈕
   $('#btn').click(function(){
    if(checkInput()==true){
     $('#login_request').ajaxSubmit({
      url:'login!testLogin',
      cache:false,
      type:'POST',
      success:function(data){
       if(data==0){
        alert('驗證碼錯誤!');
        //改變驗證碼
        CODE.initCode();
       }else if(data==1){
        alert('登錄成功!');
        //提交到登錄成功頁面
        $('#login_request')[0].submit();
       }else if(data==2){
        alert('用戶名或密碼錯誤!');
        //改變驗證碼
        CODE.initCode();
       }
      },
      error:function(e){
       alert('出錯了!');
      }
     });
     }
   });
  });
  var CODE={
    //初始化化驗證碼
    initCode:function(){
     $("#code_img").attr("src","verification.do?rmd="+new Date().getTime())//如果需要點擊圖片改變圖片的內(nèi)容,則必須添加時間搓
     .click(function(){
      $(this).attr("src","verification.do?rmd="+new Date().getTime());
     }); 
    }};
 </script>
  </head>

  <body>
   <form action="login!success" id="login_request" method="post">
    UserName:<input type="text" id="userName" name="userName"/><br/>
    Password:<input type="password" id="password" name="password"/><br>
    Verification_Code:<input type="text" id="code" name="code"/><img id="code_img" style="position:relative;top:8px;height:25px"><br>
    <input type="button" id="btn" value="登錄"/>
   </form>
  </body>
</html>

成功頁面就部貼出來了,就是一段文字而已
顯示結(jié)果:

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 日韩欧美高清一区 | 草草视频免费观看 | 成人一级黄色大片 | 中文字幕爱爱视频 | 中国av免费在线观看 | 少妇一级淫片免费放4p | 狠狠干夜夜草 | 欧美黄色看 | 久久精品久久久久 | 欧美黄一级 | 一级黄色免费观看 | 毛片大全免费看 | 香蕉久久久久久 | 91精品久久久久久久久久久 | 国产伊人色 | 99视频在线观看视频 | 国产91中文字幕 | 中文字幕在线视频日本 | 萌白酱福利视频在线网站 | 免费h片网站 | 美女毛片儿 | 亚洲无av| 精精国产xxxx视频在线播放7 | 久久国产精品久久精品国产演员表 | 久久久久在线观看 | 欧美一级高清免费 | 久久精品一二三区白丝高潮 | 久久久久久久久久性 | 成年免费观看视频 | 一本色道久久综合亚洲精品图片 | 91在线精品亚洲一区二区 | 亚洲福利视 | 深夜小视频在线观看 | 国产在线精品一区二区三区不卡 | 成人资源在线 | 久久久国产视频 | 99影视电影电视剧在线播放 | 国语自产免费精品视频在 | 狠狠操视频网站 | 久久精品一区二区三区四区五区 | 5xsq在线视频 |