structs 2.3.4学習ノート(3)生成ピクチャ検証コード
6408 ワード
struts 2.3.4を使用して生成されたピクチャ検証コードのコード(検証大コードを生成するコードはネットワークに由来する):
1.Actionのコード、主に createImageメソッド.
2. struts.xmlの構成は以下の通りです.
3. jspページでは、次のように呼び出されます.
JAvascriptのコードは次のとおりです.
4.コミットボタンのjspページコード、xml構成、javascriptコード.(手動入力検証コードが正しいかどうかを検証する)
1.Actionのコード、主に createImageメソッド.
package com.buy.user;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Random;
import javax.imageio.ImageIO;
import javax.imageio.stream.ImageOutputStream;
import com.opensymphony.xwork2.ActionContext;
public class UserAction {
private ByteArrayInputStream inputStream;
public ByteArrayInputStream getInputStream() {
return inputStream;
}
public void setInputStream(ByteArrayInputStream inputStream) {
this.inputStream = inputStream;
}
public String add(){
return "success";
}
/**
*
* @param fc
* @param bc
* @return Color , Color RGB 。
*/
private 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);
}
public String createImage() {
//
int width=85, 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));
// 155 ,
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);
}
// (6 )
String sRand="";
for (int i=0;i<6;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
ActionContext.getContext().getSession().put("rand",sRand);
//
g.dispose();
ByteArrayOutputStream output = new ByteArrayOutputStream();
ImageOutputStream imageOut = null;
try {
imageOut = ImageIO.createImageOutputStream(output);
ImageIO.write(image, "JPEG", imageOut);
imageOut.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ByteArrayInputStream input = new ByteArrayInputStream(output.toByteArray());
this.setInputStream(input);
return "success";
}
public String validate(){
String strv = (String)ActionContext.getContext().getSession().get("rand");//
System.out.println("strv = " + strv);//
return "success";
}
}
2. struts.xmlの構成は以下の通りです.
<action name="getValidateImage" class="com.buy.user.UserAction" method="createImage">
<result type="stream">
<param name="contentType">image/jpeg</param>
<param name="inputName">inputStream</param>
</result>
</action>
3. jspページでは、次のように呼び出されます.
<label class="img">
<img style="cursor:pointer;width:100px;height:26px;" alt="" onclick="changeValidateCode(this)" ver_colorofnoisepoint="#888888" id="JD_Verification1" src="getValidateImage.action">
</label>
<label class="ftx23">
?<a href="javascript:void(0)" onclick="changeValidateCode(this)" class="flk13"> </a>
</label>
JAvascriptのコードは次のとおりです.
function changeValidateCode(obj) {
// , , 。"nocache="+new Date().getTime()
document.getElementById("JD_Verification1").src=document.getElementById("JD_Verification1").src + "?nocache="+new Date().getTime();
}
4.コミットボタンのjspページコード、xml構成、javascriptコード.(手動入力検証コードが正しいかどうかを検証する)
<form name="testff" id="formpersonal21" action="test.do" method="post" onclick="check()" >
<input type="button" value=" , " >
</form>
function check(){
document.getElementById("formpersonal21").submit();
return true;
}
<action name="test" class="com.buy.user.UserAction" method="validate">
<result>test.jsp</result>
</action>