您现在的位置是:网站首页> 编程资料编程资料
用jsp页面生成随机的验证数字码示例_JSP编程_
2023-05-25
291人已围观
简介 用jsp页面生成随机的验证数字码示例_JSP编程_
checkNum.jsp
<%@ page language="java" import="java.util.*,java.sql.*" pageEncoding="UTF-8"%>
<%@ page contentType="image/jpeg" import="java.awt.*,java.awt.image.*,javax.imageio.*"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%!
Color getRandColor(int fc,int bc)//给定范围随机选颜色
{
Random random = new Random();
if(fc>255) fc= 255;
if(bc>255) bc= 255;
int r= fc+random.nextInt(bc-fc);
int g= fc+random.nextInt(bc-fc);
int b= fc+random.nextInt(bc-fc);
return new Color(r,g,b);
}
%>
<%
response.setHeader("Pragma","No-cache");//设置页面不缓冲
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires",0);
int width=60,height=20;
BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();//获取图像上下文
Random random = new Random();//生成随机对象
g.setColor(getRandColor(200,250));
g.fillRect(0,0,width,height);
g.setFont(new Font("Times New Roman",Font.PLAIN,18));//设置字体
for(int i=0;i<155;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);
}
//随机产生验证码
String sRand = "";
for(int i=0;i<4;i++)
{
String rand = String.valueOf(random.nextInt(10));
sRand+=rand;
//将验证码显示到图像中
g.setColor(new Color(20+random.nextInt(110),20+random.nextInt(110),20+random.nextInt(110)));
//设置显示随机数的颜色
g.drawString(rand,13*i+6,16);
}
//将验证码存放到session中
session.setAttribute("rand",sRand);
//图像生效
g.dispose();
//输出图像到页面
ImageIO.write(image,"JPEG",response.getOutputStream());
out.clear();
out = pageContext.pushBody();
%>
可以在登录login.jsp下直接通过: 这种格式调用;
验证码:

复制代码 代码如下:
<%@ page language="java" import="java.util.*,java.sql.*" pageEncoding="UTF-8"%>
<%@ page contentType="image/jpeg" import="java.awt.*,java.awt.image.*,javax.imageio.*"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%!
Color getRandColor(int fc,int bc)//给定范围随机选颜色
{
Random random = new Random();
if(fc>255) fc= 255;
if(bc>255) bc= 255;
int r= fc+random.nextInt(bc-fc);
int g= fc+random.nextInt(bc-fc);
int b= fc+random.nextInt(bc-fc);
return new Color(r,g,b);
}
%>
<%
response.setHeader("Pragma","No-cache");//设置页面不缓冲
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires",0);
int width=60,height=20;
BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
Graphics g = image.getGraphics();//获取图像上下文
Random random = new Random();//生成随机对象
g.setColor(getRandColor(200,250));
g.fillRect(0,0,width,height);
g.setFont(new Font("Times New Roman",Font.PLAIN,18));//设置字体
for(int i=0;i<155;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);
}
//随机产生验证码
String sRand = "";
for(int i=0;i<4;i++)
{
String rand = String.valueOf(random.nextInt(10));
sRand+=rand;
//将验证码显示到图像中
g.setColor(new Color(20+random.nextInt(110),20+random.nextInt(110),20+random.nextInt(110)));
//设置显示随机数的颜色
g.drawString(rand,13*i+6,16);
}
//将验证码存放到session中
session.setAttribute("rand",sRand);
//图像生效
g.dispose();
//输出图像到页面
ImageIO.write(image,"JPEG",response.getOutputStream());
out.clear();
out = pageContext.pushBody();
%>
可以在登录login.jsp下直接通过: 这种格式调用;
验证码:
您可能感兴趣的文章:
相关内容
- 在jsp页面中响应速度提高的7种方法分享_JSP编程_
- Action中ArrayList显示到JSP页面的具体实例_JSP编程_
- Cookie的使用及保存中文并用Cookie实现购物车功能_JSP编程_
- application对象统计所有用户对某网页的访问次数_JSP编程_
- jsp实现页面实时显示当前系统时间的方法_JSP编程_
- JSP获取服务器时间以倒计时的形式在页面显示_JSP编程_
- JSP页面中文参数的传递(get和post方法分析)_JSP编程_
- jsp要实现屏蔽退格键问题探讨_JSP编程_
- Jsp中解决session过期跳转到登陆页面并跳出iframe框架的方法_JSP编程_
- 将html页改成jsp的两种方式_JSP编程_
