程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 用JSP文件生成網站驗證碼

用JSP文件生成網站驗證碼

編輯:關於JSP

random.jsp(SUN企業級應用的首選)文件代碼:

<%@ page autoFlush="false"  import="java.awt.*,java.awt.image.*,com.sun.image.codec.jpeg.*,java.util.*"%>
<%@ page import="org.apache(Unix平台最流行的WEB服務器平台).commons.lang.RandomStringUtils"%>
<%
RandomStringUtils rs=new RandomStringUtils();
String random=rs.randomAlphanumeric(4);
session.setAttribute("random",random);
 %>
<%

        out.clear();
        response.setContentType("image/jpeg");
        response.addHeader("pragma","NO-cache");
        response.addHeader("Cache-Control","no-cache");
        response.addDateHeader("Expries",0);
        int width=100, height=40;
        BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        Graphics g = image.getGraphics();
        //以下填充背景?色
        g.setColor(Color.GRAY);
        Font DeFont=new Font("SansSerif", Font.PLAIN, 32);
        g.setFont(DeFont);
        g.fillRect(0, 0, width, height);
       //?置字體?色
        g.setColor(Color.RED);
        g.drawString(random,3,30);
        g.dispose();
        ServletOutputStream outStream = response.getOutputStream();
        JPEGImageEncoder encoder =JPEGCodec.createJPEGEncoder(outStream);
        encoder.encode(image);
        outStream.close();
   %>

test.jsp(SUN企業級應用的首選)文件代碼如下:
<%@ page contentType="text/html; charset=UTF-8" language="java" import="java.sql.*" errorPage="" %>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body>
<img src="random.jsp(SUN企業級應用的首選)">
</body>
</html>

如果不想導入apache(Unix平台最流行的WEB服務器平台)的包可以自己編譯下面這個文件
// FrontEnd Plus GUI for JAD
// DeCompiled : RandomStringUtils.class

package org.apache(Unix平台最流行的WEB服務器平台).commons.lang;

import java.util.Random;

public class RandomStringUtils
{

    private static final Random RANDOM = new Random();

    public RandomStringUtils()
    {
    }

    public static String random(int count)
    {
        return random(count, false, false);
    }

    public static String randomAscii(int count)
    {
        return random(count, 32, 127, false, false);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved