JavaWeb学习笔记3——生成图片验证码

首先创建一个名为identity的JavaWeb项目,并在其下面新建一个Servlet,名为IdentityServlet,如果不会创建项目和Servlet请参考我上节笔记:https://blog.csdn.net/h2503652646/article/details/82555695

下面是IdentityServlet.java的源代码

package com.test.identity;

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.PrintWriter;
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 com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;

public class IdentityServlet extends HttpServlet {
	
	
	public static final char[] CHARS={'2','3','4','5','6','7','8','9',
			'A','B','C','D','E','F','G','H','I','J','K',
			'L','M','N','U','V','W','X','Y','P','Q','R',
			'S','T','Z'};         //这些是随机在图片上生成的验证码内容
	
	
	public static Random random=new Random();
	
	
	
	//获取6位随机字符验证码的方法
	public static String getRandomString(){
		StringBuffer buffer=new StringBuffer();
		
		for(int i=0;i<6;i++){
			buffer.append(CHARS[random.nextInt(CHARS.length)]);
		}
		return buffer.toString();
	}
	
	//随机颜色
	public static Color getRandomColor(){
		return new Color(random.nextInt(255),random.nextInt(255),random.nextInt(255));
	}
	
	
	//某颜色的反色,用于前景色
	public static Color getReverseColor(Color c){
		return new Color(255-c.getRed(),255-c.getGreen(),255-c.getBlue());
	}

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

	/**
		 * Destruction of the servlet. 
*/ public void destroy() { super.destroy(); // Just puts "destroy" string in log // Put your code here } /** * The doGet method of the servlet.
* * This method is called when a form has its tag value method equals to get. * * @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 doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("image/jpeg"); String randomString=getRandomString(); //随机字符串 request.getSession(true).setAttribute("randomString", randomString); int width=100; int height=30; Color color=getRandomColor(); Color reverse=getReverseColor(color); //反色,用于前景色 BufferedImage bi=new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB); Graphics2D g=bi.createGraphics(); g.setFont(new Font(Font.SANS_SERIF,Font.BOLD,16)); g.setColor(color); g.fillRect(0, 0, width, height); g.setColor(reverse); g.drawString(randomString, 18, 20); //绘制随机字符 for(int i=0, n=random.nextInt(100);i * * 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 { response.setContentType("text/html"); PrintWriter out = response.getWriter(); out.println(""); out.println(""); out.println(" A Servlet"); out.println(" "); out.print(" This is "); out.print(this.getClass()); out.println(", using the POST method"); out.println(" "); out.println(""); out.flush(); out.close(); } /** * Initialization of the servlet.
* * @throws ServletException if an error occurs */ public void init() throws ServletException { // Put your code here } }

接下来我们建立一个HTML文件来引用这个图片验证码,创建方法是:在项目Iidentity上右键选择New—HTML(Advanced Templatets),在弹出框中设置名字为identity,然后Finish,下面是identity.html的代码:


   


代码工作全部完成,然后将项目部署在自己的Tomcat上(部署方法参考上节笔记),启动Tomcat,在浏览器中输入:

http://localhost:8080/identity/identity.html 回车,效果如下:

JavaWeb学习笔记3——生成图片验证码_第1张图片

可以点击按钮进行验证码的刷新更换。

你可能感兴趣的:(JavaWeb)