今天我們直接上代碼來介紹一下關於網絡編程中網頁中的驗證碼生成的方法
<%
//no
response
int width =
//在內存中創建圖像
BufferedImage image = new BufferedImage(width
BufferedImage
//獲取畫筆
Graphics g = image
//設置畫筆顏色
g
g
//開始生成驗證碼
Random r = new Random();
int num
int num
int result = num
String code = String
//將驗證碼存入session
session
//將驗證碼顯示到圖像中
g
g
g
//隨即產生干擾圖像
//隨即產生
for (int i =
int x = r
int y = r
g
g
}
//產生
for(int i=
int x = r
int y = r
g
g
}
ImageIO
out
out = pageContext
%>
td><img id=
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26186.html