jsp生成验证码的代码

效果图:


loginProcess.jsp

java 复制代码
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <% String captcha=request.getParameter("captcha");%>
    <% String captcha_session=(String)session.getAttribute("captchaCode");%>
    
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
     if (captcha.equals(captcha_session))
    	 out.print("验证码正确~!");
     else
    	 out.print("验证码不正确~!");
%>
</body>
</html>
java 复制代码
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>登录页面之验证码原理</title>
    <script>
        // JavaScript code to refresh captcha every 30 seconds
        function refreshCaptcha() {
            var img = document.getElementById("captchaImg");
            img.src = "./abc?" + new Date().getTime(); // add timestamp to force reload
        }
        setInterval(refreshCaptcha, 30000); // refresh captcha every 30 seconds
    </script>
</head>
<body>
    <h1>登录页面之验证码原理</h1>
    <form action="loginProcess.jsp" method="post">
        <div>
            <label for="username">姓名:</label>
            <input type="text" id="username" name="username">
        </div>
        <div>
            <label for="password">密码:</label>
            <input type="password" id="password" name="password">
        </div>
        <div>
            <label for="captcha">验证码:</label>
            <input type="text" id="captcha" name="captcha">
            <img id="captchaImg" width=100 src="./abc" alt="Captcha Image" onclick="refreshCaptcha()">
            <button type="button" onclick="refreshCaptcha()">刷新验证码</button>
        </div>
        <div>
            <button type="submit">登录</button>
        </div>
    </form>
</body>
</html>
java 复制代码
package src;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Base64;
import java.util.Random;
import javax.imageio.ImageIO;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/abc")
public class GenerateCaptchaServlet extends HttpServlet {
	/**
	 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
	 */
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // Set content type of the response
        response.setContentType("image/jpeg");

        // Create a random captcha code
        String captchaCode = generateRandomCode(6); // Generate 6-character random code
        // Store the captcha code in session for validation
        request.getSession().setAttribute("captchaCode", captchaCode);

        // Create a BufferedImage for captcha image
        int width = 200;
        int height = 50;
        BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        Graphics2D g2d = image.createGraphics();

        // Draw the captcha code on the image
        g2d.setFont(new Font("Arial", Font.BOLD, 24));
        g2d.setColor(Color.RED);
        g2d.drawString(captchaCode, 50, 30);

        // Dispose the graphics
        g2d.dispose();

        // Output the image as JPEG to the client
        OutputStream out = response.getOutputStream();
        ImageIO.write(image, "jpeg", out);
        out.close();
    }

    private String generateRandomCode(int length) {
        String charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
        Random random = new Random();
        StringBuilder sb = new StringBuilder(length);
        for (int i = 0; i < length; i++) {
            int index = random.nextInt(charset.length());
            sb.append(charset.charAt(index));
        }
        return sb.toString();
    }
}
相关推荐
起名字真南15 分钟前
【OJ题解】C++实现字符串大数相乘:无BigInteger库的字符串乘积解决方案
开发语言·c++·leetcode
爬山算法20 分钟前
Maven(28)如何使用Maven进行依赖解析?
java·maven
tyler_download26 分钟前
golang 实现比特币内核:实现基于椭圆曲线的数字签名和验证
开发语言·数据库·golang
小小小~27 分钟前
qt5将程序打包并使用
开发语言·qt
hlsd#27 分钟前
go mod 依赖管理
开发语言·后端·golang
小春学渗透28 分钟前
Day107:代码审计-PHP模型开发篇&MVC层&RCE执行&文件对比法&1day分析&0day验证
开发语言·安全·web安全·php·mvc
杜杜的man31 分钟前
【go从零单排】迭代器(Iterators)
开发语言·算法·golang
亦世凡华、32 分钟前
【启程Golang之旅】从零开始构建可扩展的微服务架构
开发语言·经验分享·后端·golang
2401_8574396944 分钟前
SpringBoot框架在资产管理中的应用
java·spring boot·后端
怀旧6661 小时前
spring boot 项目配置https服务
java·spring boot·后端·学习·个人开发·1024程序员节