為登錄生成彩色驗證碼
本例將在登錄頁面生成彩色驗證碼,這樣用戶在登錄時就要輸入用戶名、密碼和驗證碼,只有三個同時通過才會通過檢驗。
這裡,把生成驗證碼圖片的程序封裝為一個JavaBean,這個JavaBean的源代碼如下:
makeCertPic.Java
package pic;
import Java.awt.Color;
import Java.awt.Font;
import Java.awt.Graphics;
import Java.awt.image.BufferedImage;
import Java.io.IOException;
import Java.io.OutputStream;
import Java.util.Random;
import Javax.imageio.ImageIO;
/**
* @author dzy
* 生成驗證碼圖片
*/
public class makeCertPic {
//驗證碼圖片中可以出現的字符集,可根據需要修改
private char mapTable[]={
'a','b','c','d','e','f',
'g','h','i','j','k','l',
'm','n','o','p','q','r',
's','t','u','v','w','x',
'y','z','0','1','2','3',
'4','5','6','7','8','9'};
/**
* 功能:生成彩色驗證碼圖片
* 參數width為生成圖片的寬度,參數height為生成圖片的高度,參數os為頁面的輸出流
*/
public String getCertPic(int width, int height, OutputStream os) {
if(width<=0)width=60;
if(height<=0)height=20;
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
// 獲取圖形上下文
Graphics g = image.getGraphics();
// 設定背景色
g.setColor(new Color(0xDCDCDC));
g.fillRect(0, 0, width, height);
//畫邊框
g.setColor(Color.black);
g.drawRect(0,0,width-1,height-1);
// 取隨機產生的認證碼
String strEnsure = "";
// 4代表4位驗證碼,如果要生成更多位的認證碼,則加大數值
for(int i=0; i<4; i) {
strEnsure =mapTable[(int)(mapTable.length*Math.random())];
}
// 將認證碼顯示到圖像中,如果要生成更多位的認證碼,增加drawString語句
g.setColor(Color.black);
g.setFont(new Font("Atlantic Inline",Font.PLAIN,18));
String str = strEnsure.substring(0,1);
g.drawString(str,8,17);
str = strEnsure.substring(1,2);
g.drawString(str,20,15);
str = strEnsure.substring(2,3);
g.drawString(str,35,18);
str = strEnsure.substring(3,4);
g.drawString(str,45,15);
// 隨機產生10個干擾點
Random rand = new Random();
for (int i=0;i<10;i ) {
int x = rand.nextInt(width);
int y = rand.nextInt(height);
g.drawOval(x,y,1,1);
}
// 釋放圖形上下文
g.dispose();
try {
// 輸出圖像到頁面
ImageIO.write(image, "JPEG", os);
} catch (IOException e) {
return "";
}
return strEnsure;
}
}
在getCertPic()方法中,首先創建了一個內存圖像的實例對象,再得到此內存圖像的圖形上下文對象,接著再用這個上下文對象畫背景、邊框。接下來,隨機生成4個在mapTable