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

JSP圖形驗證碼的系統設置

編輯:關於JSP

import java.io.*;
import java.util.*;
import com.sun.image.codec.jpeg.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.awt.*;
import java.awt.image.*;


public class ValidateCode  extends HttpServlet {

 private Font mFont=new Font("宋體", Font.PLAIN,12);//設置字體
 //處理post
 public void doPost(HttpServletRequest request,HttpServletResponse response)
   throws ServletException,IOException {

  doGet(request,response);
}
 public void doGet(HttpServletRequest request,HttpServletResponse response)
   throws ServletException,IOException {
 //取得一個1000-9999的隨機數
  String s="";

  int intCount=0;

  intCount=(new Random()).nextInt(9999);//

  if(intCount<1000)intCount+=1000;

  s=intCount+"";


  //保存入session,用於與用戶的輸入進行比較.
  //注意比較完之後清除session.

  HttpSession session=request.getSession (true);

  session.setAttribute("validateCode",s);

  response.setContentType("image/gif");

  ServletOutputStream out=response.getOutputStream();

  BufferedImage image=new BufferedImage(35,14,BufferedImage.TYPE_INT_RGB);

  Graphics gra=image.getGraphics();
  //設置背景色
  gra.setColor(Color.yellow);

  gra.fillRect(1,1,33,12);
  //設置字體色
  gra.setColor(Color.black);

  gra.setFont(mFont);
  //輸出數字
  char c;

  for(int i=0;i<4;i++) {

  c=s.charAt(i);

  gra.drawString(c+"",i*7+4,11); //7為寬度,11為上下高度位置

  }

  JPEGImageEncoder encoder=JPEGCodec.createJPEGEncoder(out);

  encoder.encode(image);

  out.close();

  }
}

  java的圖片處理包需要圖形環境,而linux上沒有啟動圖形環境,找不到圖形環境的server(X11 window server using ’:0.0’ )所以會報這個錯。而通過java -Djava.awt.headless=true 這個參數的指定就可以避免java 2d去找圖形環境。

  要麼這樣試試,應該也可以。在servlet裡一開始寫一句:

System.setProperty("java.awt.headless","true");

  web服務器的java虛擬機必須加以個參數java.awt.headless=true

  以tomcat(一個很好用的JSP運行平台)為例

  可以在/etc/profile或啟動web服務的用戶的.bash_profile中的CATALINA_OPTS變量中加入:

CATALINA_OPTS="... -Djava.awt.headless=true"

  其他的也可以看看啟動腳本。只要加上這個參數就沒問題了。

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