struts 로그인 검사 코드 만들기
4224 단어 struts
<script type="text/javascript">
window.onload=function(){
var verifyObj = document.getElementById("Verify");
verifyObj.src="securityCodeImage.action?timestamp="+new Date().getTime();
verifyObj.onclick=function(){
this.src="securityCodeImage.action?timestamp="+new Date().getTime();
};
}
</script>
<body>
${Message }
<form action="login" method="post">
<input type="text" name="user.username" /><br />
<input type="password" name="user.password" /><br />
<input type="text" name="securityCode" /><br />
<img id="Verify" style="cursor: hand;" alt=" , " /><br />
<input type="submit" name="submit" value=" " />
</form>
</body>
</html>
action
<action name="securityCodeImage" class="securityCodeImageAction" method="securityCodeImage">
<result name="success" type="stream">
<param name="contentType">image/jpeg</param>
<param name="inputName">imageStream</param>
<param name="bufferSize">2048</param>
</result>
</action>
백그라운드
/**
*
*
*/
@SuppressWarnings("serial")
@Component("securityCodeImageAction")
@Scope("prototype")
public class SecurityCodeImageAction extends ActionSupport {
//
private ByteArrayInputStream imageStream;
public ByteArrayInputStream getImageStream() {
return imageStream;
}
public void setImageStream(ByteArrayInputStream imageStream) {
this.imageStream = imageStream;
}
public String securityCodeImage() throws Exception {
String securityCode = getSecurityCode();
imageStream=getImageAsInputStream(securityCode);
// session
ActionContext actionContext = ActionContext.getContext();
Map session=actionContext.getSession();
session.put("SESSION_SECURITY_CODE", securityCode);
return SUCCESS;
}
private String getSecurityCode() {
// ( 0、 1、 l、 o、 O)
char[] codes = { '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
StringBuffer securityCode =new StringBuffer();
for (int i = 0; i < 4; i++) {
int r = (int) (Math.random() * codes.length);
securityCode =securityCode.append(codes[r]) ;
}
return securityCode.toString();
}
private ByteArrayInputStream getImageAsInputStream(String securityCode) throws Exception {
//
BufferedImage image=new BufferedImage(70, 20, BufferedImage.TYPE_INT_RGB);
Graphics g=image.createGraphics();
g.setColor(Color.LIGHT_GRAY);//
//
g.setColor(new Color(19,148,246));
for(int i = 0; i < 4;i++){
g.drawString(String.valueOf(securityCode.charAt(i)), i * 15 + 5, 15);
}
//
g.dispose();
ByteArrayInputStream inputStream = null;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
JPEGImageEncoder jpeg = JPEGCodec.createJPEGEncoder(bos);
jpeg.encode(image);
byte[] bts = bos.toByteArray();
inputStream = new ByteArrayInputStream(bts);
return inputStream;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java의 Struts2 파일 업로드 및 다운로드 예파일 업로드 Struts 응용 프로그램에서 File Upload 차단기와 Jakarta Commons File Upload 구성 요소로 파일을 업로드할 수 있습니다. Jsp 페이지의 파일 업로드 폼에 파일 탭을 사용...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.