日韩天天综合网_野战两个奶头被亲到高潮_亚洲日韩欧美精品综合_av女人天堂污污污_视频一区**字幕无弹窗_国产亚洲欧美小视频_国内性爱精品在线免费视频_国产一级电影在线播放_日韩欧美内地福利_亚洲一二三不卡片区

動(dòng)態(tài)生成驗(yàn)證碼_JSP教程

編輯Tag賺U幣
教程Tag:暫無(wú)Tag,歡迎添加,賺取U幣!

推薦:Jsp驗(yàn)證碼(檢驗(yàn)碼)實(shí)例代碼
利用Apache的一個(gè) 開(kāi)源項(xiàng)目Image Tag Library(http://jakarta.apache.org/taglibs/sandbox/doc/image-doc/intro.html) 下載必要文件 1)下載Jakarta-Taglibs: http://people.apache.org/builds/jakarta-taglibs-sandbox/nightly/ 解壓后取出taglibs-image.jar

下面一個(gè)實(shí)例講述如何動(dòng)態(tài)生成驗(yàn)證碼及驗(yàn)證碼是否匹配。

顯示驗(yàn)證碼的html頁(yè)面login.html代碼如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>login.html</title>

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

</head>

<body>
<center>
<form action="login" method="post">
驗(yàn)證碼:<input type="text" name="random"><img src="imgcode">
<br>
<br>
<input type="submit" value="提交">
</form>
</center>
</body>
</html>

動(dòng)態(tài)生成驗(yàn)證碼的servlet類(lèi)RandomCodeServlet.java代碼如下:
package iss;


import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.util.Random;

import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.imageio.*;

public class RandomCodeServlet extends HttpServlet ...{

/** *//**
* Constructor of the object.
*/
public RandomCodeServlet() ...{
super();
}

//驗(yàn)證碼圖片的寬度
private int width=60;
//驗(yàn)證碼圖片的高度
private int height=20;

protected void service(HttpServletRequest request,HttpServletResponse response)
throws ServletException,java.io.IOException...{
BufferedImage buffImg=new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
Graphics2D g=buffImg.createGraphics();

//創(chuàng)建一個(gè)隨機(jī)數(shù)生成器
Random random=new Random();

g.setColor(Color.WHITE);
g.fillRect(0, 0, width, height);

//創(chuàng)建字體,字體的大小應(yīng)該根據(jù)圖片的高度來(lái)定
Font font=new Font("Times New Roman",Font.PLAIN,18);
//設(shè)置字體
g.setFont(font);

//畫(huà)邊框
g.setColor(Color.BLACK);
g.drawRect(0, 0, width-1, height-1);

//隨機(jī)產(chǎn)生160條干擾線
g.setColor(Color.GRAY);
for(int i=0;i<160;i++)...{
int x=random.nextInt(width);
int y=random.nextInt(height);
int x1=random.nextInt(12);
int y1=random.nextInt(12);
g.drawLine(x, y, x+x1, y+y1);
}

//randomCode用于保存隨機(jī)產(chǎn)生的驗(yàn)證碼
StringBuffer randomCode=new StringBuffer();
int red=0,green=0,blue=0;

//隨機(jī)產(chǎn)生4位數(shù)字的驗(yàn)證碼
for(int i=0;i<4;i++)...{
//得到隨機(jī)產(chǎn)生的驗(yàn)證碼數(shù)字
String strRand=String.valueOf(random.nextInt(10));

//產(chǎn)生隨機(jī)的顏色分量來(lái)構(gòu)造顏色值
red=random.nextInt(110);
green=random.nextInt(50);
blue=random.nextInt(50);

//用隨機(jī)產(chǎn)生的顏色將驗(yàn)證碼繪制到圖像中
g.setColor(new Color(red,green,blue));
g.drawString(strRand, 13*i+6, 16);

randomCode.append(strRand);
}

//將四位數(shù)字的驗(yàn)證碼保存到session中
HttpSession session=request.getSession();
session.setAttribute("randomCode", randomCode.toString());

//禁止圖像緩存
response.setHeader("Pragma", "no-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);

response.setContentType("image/jpeg");
//將圖像輸出到servlet輸出流中
ServletOutputStream sos=response.getOutputStream();
ImageIO.write(buffImg, "jpeg", sos);
sos.close();

}

}

判斷驗(yàn)證碼是否匹配的LoginServlet.java代碼如下:
package iss;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

public class LoginServlet extends HttpServlet ...{

/** *//**
* The doPost method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to post.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException ...{

HttpSession session=request.getSession();
String randomCode=(String)session.getAttribute("randomCode");
if(null==randomCode)...{
response.sendRedirect("login.html");
return;
}
String reqRandom=request.getParameter("random");
response.setCharacterEncoding("gbk");
response.setContentType("text/html;charset=gb2312");
PrintWriter out = response.getWriter();
if(randomCode.equals(reqRandom))...{
out.println("驗(yàn)證碼匹配!");
}else...{
out.println("驗(yàn)證碼不匹配!");
}

out.close();
}

}

web.xml如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.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>RandomCodeServlet</servlet-name>
<servlet-class>iss.RandomCodeServlet</servlet-class>
</servlet>
<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>LoginServlet</servlet-name>
<servlet-class>iss.LoginServlet</servlet-class>
</servlet>


<servlet-mapping>
<servlet-name>RandomCodeServlet</servlet-name>
<url-pattern>/imgcode</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>LoginServlet</servlet-name>
<url-pattern>/login</url-pattern>
</servlet-mapping>
</web-app>

 

分享:網(wǎng)頁(yè)無(wú)閃自動(dòng)局部刷新實(shí)例
我們?cè)诰W(wǎng)頁(yè)制作的過(guò)程中經(jīng)常會(huì)遇到及時(shí)刷新數(shù)據(jù)的問(wèn)題,如果使用 meta http-equiv=refresh content=300 的方法,會(huì)造成整個(gè)屏幕不斷閃爍刷新的效果,這會(huì)降低用戶(hù)的操作滿意度。所以我們需要一種可以實(shí)現(xiàn)無(wú)閃自動(dòng)刷新數(shù)據(jù)的方法來(lái)解決以上問(wèn)題。 實(shí)例解決

來(lái)源:模板無(wú)憂//所屬分類(lèi):JSP教程/更新時(shí)間:2010-05-31
相關(guān)JSP教程