<%@pagecontentType="image/jpeg"import="java.awt.*,java.awt.image.*,java.util.*,javax.imageio.*"%><%!//隨機顏色ColorgetRandColor(intfc,intbc){Randomrandom=newRan" />

黄色网页视频 I 影音先锋日日狠狠久久 I 秋霞午夜毛片 I 秋霞一二三区 I 国产成人片无码视频 I 国产 精品 自在自线 I av免费观看网站 I 日本精品久久久久中文字幕5 I 91看视频 I 看全色黄大色黄女片18 I 精品不卡一区 I 亚洲最新精品 I 欧美 激情 在线 I 人妻少妇精品久久 I 国产99视频精品免费专区 I 欧美影院 I 欧美精品在欧美一区二区少妇 I av大片网站 I 国产精品黄色片 I 888久久 I 狠狠干最新 I 看看黄色一级片 I 黄色精品久久 I 三级av在线 I 69色综合 I 国产日韩欧美91 I 亚洲精品偷拍 I 激情小说亚洲图片 I 久久国产视频精品 I 国产综合精品一区二区三区 I 色婷婷国产 I 最新成人av在线 I 国产私拍精品 I 日韩成人影音 I 日日夜夜天天综合

JSP生成驗證碼

系統 2030 0

image.jsp

<% @ page language = "java" import = "java.util.*" pageEncoding = "gb2312" %>
<% @ page contentType = "image/jpeg" import = "java.awt.*,
java.awt.image.*,java.util.*,javax.imageio.*" %>
<% !
/ / 隨機顏色
Color getRandColor ( int fc , int bc )
{
Random random = new Random ( ) ;
if ( fc > 255 ) fc = 255 ;
if ( bc > 255 ) bc = 255 ;
int r = fc + random . nextInt ( bc - fc ) ;
int g = fc + random . nextInt ( bc - fc ) ;
int b = fc + random . nextInt ( bc - fc ) ;
return new Color ( r , g , b ) ;
}
%>
<%
out . clear ( ) ;
/ / 設置頁面不緩存
response . setHeader ( "Pragma" , "No-cache" ) ;
response . setHeader ( "Cache-Control" , "no-cache" ) ;
response . setDateHeader ( "Expires" , 0 ) ;
/ / 定義圖片的長度和高度
int width = 60 , height = 20 ;
/ / 在內存中創建圖像
BufferedImage image = new BufferedImage ( width , height , BufferedImage . TYPE_INT_RGB ) ;
Graphics g = image . getGraphics ( ) ;
/ / 隨機類
Random random = new Random ( ) ;
/ / 設置背景
g . setColor ( getRandColor ( 200 , 250 ) ) ;
g . fillRect ( 0 , 0 , width , height ) ;
/ / 字體定義
g . setFont ( new Font ( "Times New Roman" , Font . PLAIN , 18 ) ) ;
g . setColor ( getRandColor ( 160 , 200 ) ) ;
/ / 用線條畫背景
for ( int i = 0 ; i < 155 ; i ++ )
{
int x = random . nextInt ( width ) ;
int y = random . nextInt ( height ) ;
int xl = random . nextInt ( 12 ) ;
int yl = random . nextInt ( 12 ) ;
g . drawLine ( x , y , x + xl , y + yl ) ;
}
/ / 生成驗證碼隨機數
String sRand = "" ;
for ( int i = 0 ; i < 4 ; i ++ ) {
String rand = String . valueOf ( random . nextInt ( 10 ) ) ;
sRand + = rand ;
g . setColor ( new Color ( 20 + random . nextInt ( 110 ) , 20 + random . nextInt ( 110 ) , 20 + random . nextInt ( 110 ) ) ) ;
g . drawString ( rand , 13 * i + 6 , 16 ) ;
}
/ / 將認證碼存入 SESSION
session . setAttribute ( "code" , sRand ) ;
g . dispose ( ) ;
/ / 輸出圖像
ImageIO . write ( image , "JPEG" , response . getOutputStream ( ) ) ;
%>
login.jsp

XHTML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<% @ page contentType = "text/html; charset=gb2312" language = "java" import = "java.sql.*" errorPage = "" %>
<html>
<head>
<title> 登錄頁面 </title>
<script language = "javascript" >
function loadimage ( ) {
document . getElementById ( "randImage" ) . src = "image.jsp?" + Math . random ( ) ;
}
</script>
</head>
<body>
<form action = "check.jsp" method = "post" name = "loginForm" >
<td width = "118" height = "22" valign = "middle" align = "center" > <input type = "text" name = "code" size = "15" > </td>
<td width = "138" align = "center" > <a href = "javascript:loadimage();" > <img name = "randImage" id = "randImage" src = "image.jsp" width = "60" height = "20" valign = "middle" border = "1" > </a> 點擊圖片刷新
<input type = "submit" name = "login" value = "提交" > </td>
</form>
</body>
</html>
check.jsp

XHTML
1
2
3
4
5
6
7
8
9
10
<% @ page contentType = "text/html; charset=gb2312" language = "java" %>
<%
String rand = ( String ) session . getAttribute ( "code" ) ;
String input = request . getParameter ( "code" ) ;
if ( rand . equals ( input ) ) {
out . print ( "<script>alert('驗證成功');</script>" ) ;
} else {
out . print ( "<script>alert('驗證失敗');location.href='login.jsp';</script>" ) ;
}
%>
JSP生成驗證碼 JSP生成驗證碼


JSP生成驗證碼


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論