사례 (다크호스) - 간단 한 인증 코드
19063 단어 사례 프로젝트 학습자바 script자바
package com.qgl.web.servlet;
import javax.imageio.ImageIO;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;
@WebServlet("/checkCodeServlet")
public class CheckCodeServlet extends HttpServlet {
private int width = 100;
private int height = 50;
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// ,
BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
//
//
Graphics g = image.getGraphics(); //
g.setColor(Color.PINK); //
g.fillRect(0,0,width,height);
//
g.setColor(Color.BLUE);
g.drawRect(0,0,width-1,height-1);
//
String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
Random rd = new Random();
//
for (int i = 1; i <8 ; i++) {
int x1 = rd.nextInt(width);
int x2 = rd.nextInt(width);
int y1 = rd.nextInt(height);
int y2 = rd.nextInt(height);
g.drawLine(x1,x2,y1,y2);
}
//
g.setColor(Color.BLACK);
for (int i = 1; i <=4; i++) {
int index = rd.nextInt(str.length());
char c = str.charAt(index);
g.drawString(c+"",width/5*i,height/2);
}
//
ImageIO.write(image,"jpg",resp.getOutputStream());
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doGet(req,resp);
}
}
<html>
<head>
<title>checkcodetitle>
<script>
//
window.onload = function () {
//
var change1 = document.getElementById("clickimg");
var change2 = document.getElementById("clickchar");
//
change1.onclick = function () {
//
var time = new Date().getTime();
change1.src = "/case/checkCodeServlet?"+time;
}
change2.onclick = function () {
var time = new Date().getTime();
change1.src = "/case/checkCodeServlet?"+time;
}
}
script>
head>
<body>
<img id="clickimg" src="/case/checkCodeServlet">
<a id="clickchar" href=""> , a>
body>
html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
vue 입문 vue 와 react 와 Angular 의 관계 와 차이vue 의 목 표 는 가능 한 한 간단 한 API 를 통 해 '응답 하 는 데이터 바 인 딩' 과 '조 합 된 보기 구성 요소' 를 실현 하 는 것 입 니 다. 4) vue 와 angular 바 인 딩 은 모두 {{...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.