2017.11.29 JSP+Servlet 中功能验证码及验证的实现
源代码如下:
validate.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>验证码</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">
<style type="text/css">
.error{
background: url(./images/invalid_line.gif) repeat-x bottom;
border: 1px solid red;
}
</style>
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript">
$(function(){
$("#check").blur(function(){
$.ajax({
type:'post',
url:'check',
data: {input: $(this).val()},
dataType: "text/json",
success: function(msg){
var ret = eval('(' + msg + ')');
var success = ret.success;
$("#tip").html(ret.message);
if(!success){
$(this).val('');
$("#image").attr('src',"validate?random="+Math.random());
$("#check").addClass("error");
$("#tip").css({'color':'red','font-family': '华文楷体'});
}else{
$("#check").removeClass("error");
$("#tip").css({'color':'black','font-family': '华文楷体'});
}
}
});
});
$("#image").click(function(){
$(this).attr('src',"validate?random="+Math.random());
});
});
</script>
</head>
<body>
<input type="text" id="check" value="">
<div id="tip"> </div>
<br>
<img alt="" src="validate" id="image">
</body>
</html>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="2.5"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<servlet-mapping>
<servlet-name>validate</servlet-name>
<url-pattern>/validate</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>validate</servlet-name>
<servlet-class>test.MyValidateServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>check</servlet-name>
<url-pattern>/check</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>check</servlet-name>
<servlet-class>test.CheckServlet</servlet-class>
</servlet>
</web-app>
ValidateCode.java
package util;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.util.Random;
public class ValidateCode {
public static final int TYPE_NUM_ONLY = 0;
public static final int TYPE_LETTER_ONLY = 1;
public static final int TYPE_ALL_MIXED = 2;
public static final int TYPE_NUM_UPPER = 3;
public static final int TYPE_NUM_LOWER = 4;
public static final int TYPE_UPPER_ONLY = 5;
public static final int TYPE_LOWER_ONLY = 6;
public static String generateTextCode(int type, int length, String exChars) {
if (length <= 0) {
return "";
}
StringBuffer code = new StringBuffer();
int i = 0;
Random r = new Random();
switch (type) {
case 0:
while (i < length) {
int t = r.nextInt(10);
if ((exChars == null) || (exChars.indexOf(t) < 0)) {
code.append(t);
i++;
}
}
break;
case 1:
while (i < length) {
int t = r.nextInt(123);
if (((t >= 97) || ((t >= 65) && (t <= 90)))
&& ((exChars == null) || (exChars.indexOf((char) t) < 0))) {
code.append((char) t);
i++;
}
}
break;
case 2:
while (i < length) {
int t = r.nextInt(123);
if (((t < 97) && ((t < 65) || (t > 90)) && ((t < 48) || (t > 57)))
|| ((exChars != null) && (exChars.indexOf((char) t) >= 0)))
continue;
code.append((char) t);
i++;
}
break;
case 3:
while (i < length) {
int t = r.nextInt(91);
if (((t >= 65) || ((t >= 48) && (t <= 57)))
&& ((exChars == null) || (exChars.indexOf((char) t) < 0))) {
code.append((char) t);
i++;
}
}
break;
case 4:
while (i < length) {
int t = r.nextInt(123);
if (((t >= 97) || ((t >= 48) && (t <= 57)))
&& ((exChars == null) || (exChars.indexOf((char) t) < 0))) {
code.append((char) t);
i++;
}
}
break;
case 5:
while (i < length) {
int t = r.nextInt(91);
if ((t >= 65)
&& ((exChars == null) || (exChars.indexOf((char) t) < 0))) {
code.append((char) t);
i++;
}
}
break;
case 6:
while (i < length) {
int t = r.nextInt(123);
if ((t >= 97)
&& ((exChars == null) || (exChars.indexOf((char) t) < 0))) {
code.append((char) t);
i++;
}
}
}
return code.toString();
}
public static BufferedImage generateImageCode(String textCode, int width,
int height, int interLine, boolean randomLocation, Color backColor,
Color foreColor, Color lineColor) {
BufferedImage bim = new BufferedImage(width, height, 1);
Graphics g = bim.getGraphics();
g.setColor(backColor == null ? getRandomColor() : backColor);
g.fillRect(0, 0, width, height);
Random r = new Random();
if (interLine > 0) {
int x = 0;
int y = 0;
int x1 = width;
int y1 = 0;
for (int i = 0; i < interLine; i++) {
g.setColor(lineColor == null ? getRandomColor() : lineColor);
y = r.nextInt(height);
y1 = r.nextInt(height);
g.drawLine(x, y, x1, y1);
}
}
int fsize = (int) (height * 0.8D);
int fx = height - fsize;
int fy = fsize;
g.setFont(new Font("Default", 0, fsize));
for (int i = 0; i < textCode.length(); i++) {
fy = randomLocation ? (int) ((Math.random() * 0.3D + 0.6D) * height)
: fy;
g.setColor(foreColor == null ? getRandomColor() : foreColor);
g.drawString(String.valueOf(textCode.charAt(i)), fx, fy);
fx = (int) (fx + fsize * 0.9D);
}
g.dispose();
return bim;
}
public static BufferedImage generateImageCode(int type, int length,
String exChars, int width, int height, int interLine,
boolean randomLocation, Color backColor, Color foreColor,
Color lineColor) {
String textCode = generateTextCode(type, length, exChars);
BufferedImage bim = generateImageCode(textCode, width, height,
interLine, randomLocation, backColor, foreColor, lineColor);
return bim;
}
private static Color getRandomColor() {
Random r = new Random();
Color c = new Color(r.nextInt(255), r.nextInt(255), r.nextInt(255));
return c;
}
}
MyValidateServlet.java
package test;
import java.awt.Color;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import javax.imageio.ImageIO;
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 util.ValidateCode;
public class MyValidateServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
resp.setHeader("Pragma", "No-cache");// 设置响应头信息,告诉浏览器不要缓存此内容
resp.setHeader("Cache-Control", "no-cache");
resp.setDateHeader("Expire", 0);
try {
String textCode = ValidateCode.generateTextCode(
ValidateCode.TYPE_ALL_MIXED, 6, null);
BufferedImage image = ValidateCode.generateImageCode(textCode, 500,
100, 5, true, Color.GRAY, null, null);
HttpSession session = req.getSession(true);
session.setAttribute("captcha", textCode);
resp.setContentType("image/jpeg");
OutputStream outputStream = resp.getOutputStream();
ImageIO.write(image, "jpeg", outputStream);
} catch (Exception e) {
e.printStackTrace();
}
}
}
CheckServlet.java
[java] view plain copy
package test;
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 CheckServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
resp.setCharacterEncoding("UTF-8");
resp.setContentType("text/html;chartset=UTF-8");
req.setCharacterEncoding("UTF-8");
String input = (String) req.getParameter("input");
HttpSession sess = req.getSession();
String captcha = (String) sess.getAttribute("captcha");
PrintWriter out = resp.getWriter();
if(input.toUpperCase().equals(captcha.toUpperCase())){
out.print("{'success': true,'message': '验证码正确!'}");
}else{
out.print("{'success': false,'message': '验证码错误!'}");
}
out.flush();
out.close();
}
}
2017.11.29 JSP+Servlet 中功能验证码及验证的实现的更多相关文章
- JSP/Servlet 中的汉字编码问题
JSP/Servlet 中的汉字编码问题 1.问题的起源 每个国家(或区域)都规定了计算机信息交换用的字符编码集,如美国的 ASCII,中国的 GB2312 -80,日本的 JIS 等,作为该国家/区 ...
- JSP/Servlet 中的事件处理
写过AWT或Swing程序的人一定对桌面程序的事件处理机制印象深刻:通过实现Listener接口的类可以在特定事件(Event)发生时,呼叫特定的方法来对事件进行响应. 其实我们在编写JSP/Serv ...
- servlet中生成验证码
在servlet中生成验证码 package login; import java.awt.Color; import java.awt.Graphics; import java.awt.image ...
- JSP+Servlet中使用jspsmartupload.jar进行图片上传下载
JSP+Servlet中使用cos.jar进行图片上传 upload.jsp <form action="FileServlet" method="post&quo ...
- JSP+Servlet中使用cos.jar进行图片上传(文件上传亦然)
链接:JSP+Servlet中使用jspsmartupload.jar进行图片上传下载 关于cos.jar,百度百科只有这么几句话(http://baike.baidu.com/subview/406 ...
- 2017.11.27 用Servlet在JSP中加入验证码
登陆界面 <%@ page pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML ...
- jsp/servlet中的编码问题
首先声明以下只是我个人的看法,有部分观点与网上人云亦云的观点不一样,不过凡事必恭亲,我还是相信自己测试的结果 推荐一个很好地URL编码详解http://www.ruanyifeng.com/blog/ ...
- JSP Servlet中的Request和Response的简单研究
本文参考了几篇文章所得,参考目录如下: 1.http://www.cnblogs.com/guangshan/p/4198418.html 2.http://www.iteye.com/problem ...
- JSP Servlet中Request与Response所有成员方法的研究
HttpServletRequest与HttpServletResponse作为Servlet中doGet.doPost等方法中传递的参数,承接了Http请求与响应中的大部分功能,请求的解析与响应的返 ...
随机推荐
- python数据库的增删改查
#coding=utf- from sqlalchemy import create_engine from sqlalchemy.orm import sessionmaker from sqlal ...
- 使用Koa.js,离不开这十个中间件
随着ES6的普及,async/await的语法受到更多JS开发者的青睐,Koa.js作为比较早支持使用该语法的Node框架越来越受到大家的喜爱,虽然Koa.js本身支持的功能很有限,但官方和社区提供了 ...
- Python字符和编码
1. 字符和编码 背景 因为计算机只能处理数字,如果要处理文本,就必须先把文本转换为数字才能处理.最早的计算机在设计时采用8个比特(bit)作为一个字节(byte). 由于计算机是美国人发明的,因此, ...
- linux 防止ssh暴力破解密码
收集 /var/log/secure 里面的信息,若是某个IP 链接次数超过一定次数 ,则把此ip记录到/etc/hosts.deny里面 #!/bin/bash #Denyhosts SHELL S ...
- 搭建Activemq集群
首先搭建zookeeper集群: 参考URL: http://www.cnblogs.com/feiyun126/p/7244394.html 三台服务器:先设置hosts 10.0.0.231 n ...
- HDU 5592——ZYB's Premutation——————【线段树单点更新、单点查询】
ZYB's Premutation Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Othe ...
- HDU 5384——Danganronpa——————【AC自动机】
Danganronpa Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Tot ...
- 祝高二学弟学妹AK NOIp2018!!!!!!
- Xtrareport 多栏报表
首先看下布局designer 细节: 分组一定要用到GroupHeather 设置好有 右边会出现 接下来是代码部分 Form1中代码 using DevExpress.XtraReports.UI; ...
- dotnetcharting 的简单使用
dotnetcharting 是一个很好用的图表控件,能画出很漂亮的报表,一般常用到的主要有柱状图.饼图.折线图三种. dotnetcharting 有web版.winform版多个版本可供使用,官方 ...