谷歌kaptcha图片验证码的使用
步骤:
- 导入谷歌验证码的jar包kaptcha-2.3.2.jar
- 在web.xml中配置用于生成验证码的Servlet程序
<servlet>
<servlet-name>KaptchaServlet</servlet-name>
<servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>KaptchaServlet</servlet-name>
<url-pattern>/kaptcha.jpg</url-pattern>
</servlet-mapping>
- 在表单中使用img标签去显示验证码图片并使用它
<form action="http://localhost:8082/tmp/resignServlet" method="get">
用户名:<input type="text" name="username" id=""><br>
验证码:<input type="text" style="width: 60px" name="code">
<img src="http://localhost:8082/tmp/kaptcha.jpg" alt="" style="width: 100px; height: 28px"><br>
<input type="submit" value="登录">
</form>
- 在服务器获取谷歌生成的验证码和客户端发送过来的验证码比较使用。
public class ResignServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//获取session中的验证码
String token = (String)req.getSession().getAttribute(KAPTCHA_SESSION_KEY);
//马上删除验证码,免得用第二次
req.getSession().removeAttribute(KAPTCHA_SESSION_KEY);
String code = req.getParameter("code");
//获取用户名
String username = req.getParameter("username");
//比较
if(token != null&& token.equalsIgnoreCase(code)){
System.out.println("保存到数据库:"+username);
resp.sendRedirect(req.getContextPath()+"/ok.jsp");
}else {
System.out.println("请不要重复提交表单");
}