下面是DLOG4J生成随即验证码的代码:

package dlog4j;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import dlog4j.util.image.RandomImageGenerator;


/**
 * 用于产生注册用户时的随即图片以防止非法攻击
 * @author Liudong
 */
public class RandomImageServlet extends HttpServlet {

    public final static String RANDOM_LOGIN_KEY = "RANDOM_LOGIN_KEY";

 public void init() throws ServletException {
  System.setProperty("java.awt.headless","true");
 }

 
    public static String getRandomLoginKey(HttpServletRequest req) {
        return (String)req.getSession().getAttribute(RANDOM_LOGIN_KEY);
    }
   
    protected void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
    {
        HttpSession ssn = req.getSession();
        if(ssn!=null) {
            String randomString = RandomImageGenerator.random();
            ssn.setAttribute(RANDOM_LOGIN_KEY,randomString);
            res.setContentType("image/jpeg");
            RandomImageGenerator.render(randomString,res.getOutputStream());
        }
    }
}

这段代码在Linux下工作是没问题的,但是生成图片的时候会抛出类没定义的异常,除非JDK是1.5版本。如果JDK为1.4的话,那只能给应用服务器的启动加上参数-Djava.awt.headless=true,具体每个应用服务器如何加此参数请参照不同服务器的文档。Tomcat可以通过修改startup.sh来添加这个参数。

在网上看过很多对该问题的描述,都没有什么有效的解决办法。