在JSP页面中动态生成图片验证码的方法实例
在jsp页面中动态生成图片验证码
<%@ page language="java" pageencoding="utf-8"%> <%@ page import="java.awt.*,java.awt.image.*,com.sun.image.codec.jpeg.*,java.util.*" %> <%@ taglib http://struts.apache.org/tags-bean">http://struts.apache.org/tags-bean" prefix="bean" %> <%@ taglib http://struts.apache.org/tags-html">http://struts.apache.org/tags-html" prefix="html" %> <%@ taglib http://struts.apache.org/tags-logic">http://struts.apache.org/tags-logic" prefix="logic" %> <%@ taglib http://struts.apache.org/tags-tiles">http://struts.apache.org/tags-tiles" prefix="tiles" %> myjsp.jsp在jsp页面生成验证码
<% //out.clear(); //response.setcontenttype("image/jpeg");//设置响应类型 //response.addheader("pragma","no-cache"); //response.addheader("cache-control","no-cache"); //response.adddateheader("expries",0); int width=400, height=30;//图片的大小(宽和高) //构架画布,第一个参数表示画布的宽,第二个参数表示画布的高,第三个参数的含义有待确定 bufferedimage image = new bufferedimage(width, height, bufferedimage.type_int_rgb); graphics g = image.getgraphics();//实例化画图对象 //以下设置背景色 g.setcolor(color.yellow); font defont=new font("宋体", font.italic, 20); g.setfont(defont); //将已经设置好的背景颜色填充到指定的画布区域 g.fillrect(0,0, width, height); //置字体色 g.setcolor(color.blue); int x=10,y=10,xl=550,yl=15; g.drawline(x,y,x+xl,y+yl); //在画布中画椭圆形,参数为椭圆的坐标,用于确定椭圆的大小 g.drawoval(0,10,200,10); //在画布上输出文字信息,第一个参数表示要显示的文字,第二和第三个参数表示起始点的x、y坐标 g.drawstring("想要输出的文字-我是陈杉",70,20); g.dispose(); servletoutputstream outstream = response.getoutputstream(); jpegimageencoder encoder =jpegcodec.createjpegencoder(outstream); encoder.encode(image); outstream.close(); %>
--将该文件保存为pic.jsp,该文件负责生成图片!如果要在其他的页面显示该图片只需要写上
相关文章
- jsp+servlet实现文件上传与下载功能
- EJB3.0部署消息驱动Bean抛javax.naming.NameNotFoundException异常
- 在JSP中使用formatNumber控制要显示的小数位数方法
- 秒杀系统Web层设计的实现方法
- 将properties文件的配置设置为整个Web应用的全局变量实现方法
- JSP使用过滤器防止Xss漏洞
- 在JSP页面中动态生成图片验证码的方法实例
- 详解JSP 内置对象request常见用法
- 使用IDEA编写jsp时EL表达式不起作用的问题及解决方法
- jsp实现局部刷新页面、异步加载页面的方法
- Jsp中request的3个基础实践
- JavaServlet的文件上传和下载实现方法
- JSP页面的静态包含和动态包含使用方法