用户登录系统及一次性验证码的简单实现

绝地灬酷狼 2022-07-14 08:23 289阅读 0赞

Session经常用来完成系统权限和认证功能

  • 权限:在用户身份认证后,根据权限知道 — 你能做什么
  • 认证:用户登陆 — 你是谁

将登陆用户信息保存到Session 有什么作用 ? —- 如果session中没有用户信息 未登陆

这里写图片描述

欢迎界面

  1. <body>
  2. <h1>系统主页</h1>
  3. <%
  4. // 因为session会保存登陆用户信息,如果session中没有该信息 说明用户未登录
  5. if(request.getSession().getAttribute("username")==null){
  6. //未登录
  7. out.println("你还没有登陆,<a href='/Login/Session/demo/login.jsp'>去登陆</a>");
  8. }else{
  9. // 已经登陆
  10. out.println("欢迎你,"+request.getSession().getAttribute("username"));
  11. }
  12. %>
  13. </body>

注册界面:

  1. <script type="text/javascript">
  2. function change(){
  3. //切换验证码
  4. document.getElementById("myimg").src="/Login/checkcode?"+new Date().getTime();
  5. }
  6. </script>
  7. </head>
  8. <body>
  9. <h1>登陆页面</h1>
  10. <h3 style="color:red;">${requestScope.msg }</h3>
  11. <form action="/Login/login" method="post">
  12. 用户名 <input type="text" name="username" /><br/>
  13. 密码 <input type="password" name="password" /><br/>
  14. 请输入验证码 <input type="text" name="checkcode" /><img id="myimg" src="/Login/checkcode" style="cursor:pointer; " onclick="change();"/><br/>
  15. <input type="submit" value="登陆" />
  16. </form>
  17. </body>

注册Servlet;

  1. import java.io.IOException;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import javax.servlet.ServletException;
  5. import javax.servlet.annotation.WebServlet;
  6. import javax.servlet.http.HttpServlet;
  7. import javax.servlet.http.HttpServletRequest;
  8. import javax.servlet.http.HttpServletResponse;
  9. /**
  10. * 用户登陆
  11. *
  12. * @author megustas
  13. *
  14. */
  15. public class LoginServlet extends HttpServlet {
  16. //用于保存用户账号密码
  17. private Map<String, String> userInfo = new HashMap<String, String>();
  18. @Override
  19. public void init() throws ServletException {
  20. // 制作用户假数据,模拟数据库
  21. userInfo.put("aaa", "111");
  22. userInfo.put("bbb", "222");
  23. userInfo.put("ddd", "333");
  24. userInfo.put("www", "444");
  25. }
  26. public void doGet(HttpServletRequest request, HttpServletResponse response)
  27. throws ServletException, IOException {
  28. // post 乱码解决
  29. request.setCharacterEncoding("utf-8");
  30. // 判断验证码输入是否正确
  31. String checkcode = request.getParameter("checkcode");
  32. String checkcode_session = (String) request.getSession().getAttribute(
  33. "checkcode_session");
  34. // 删除session中验证码
  35. request.getSession().removeAttribute("checkcode_session");
  36. if (checkcode_session == null || !checkcode_session.equals(checkcode)) {
  37. // 验证码无效 -- 跳回login.jsp
  38. // response.sendRedirect("/Login/Session/demo/login.jsp");
  39. // 传递错误信息给jsp
  40. request.setAttribute("msg", "验证码错误错误");
  41. request.getRequestDispatcher("/Session/demo/login.jsp").forward(
  42. request, response);
  43. return;
  44. }
  45. // 1 从请求获得数据
  46. String username = request.getParameter("username");
  47. String password = request.getParameter("password");
  48. // 2 判断用户信息是否正确
  49. if (userInfo.containsKey(username)) {
  50. // 如果用户名存在
  51. if (userInfo.get(username).equals(password)) {
  52. // 密码正确 --- 登陆成功
  53. // 将用户信息 保存session
  54. request.getSession().setAttribute("username", username);
  55. // 跳转登陆成功 系统主页
  56. response.sendRedirect("/Login/Session/demo/welcome.jsp");
  57. } else {
  58. // 密码错误
  59. // response.sendRedirect("/Login/Session/demo/login.jsp");
  60. request.setAttribute("msg", "密码输入错误");
  61. request.getRequestDispatcher("/Session/demo/login.jsp")
  62. .forward(request, response);
  63. }
  64. } else {
  65. // 用户名不存在
  66. // response.sendRedirect("/day07/session/demo3/login.jsp");
  67. request.setAttribute("msg", "用户名不存在");
  68. request.getRequestDispatcher("/Session/demo/login.jsp").forward(
  69. request, response);
  70. }
  71. }
  72. public void doPost(HttpServletRequest request, HttpServletResponse response)
  73. throws ServletException, IOException {
  74. doGet(request, response);
  75. }
  76. }

验证码生成

  1. import java.awt.Color;
  2. import java.awt.Font;
  3. import java.awt.Graphics;
  4. import java.awt.Graphics2D;
  5. import java.awt.image.BufferedImage;
  6. import java.io.IOException;
  7. import java.util.Random;
  8. import javax.imageio.ImageIO;
  9. import javax.servlet.ServletException;
  10. import javax.servlet.annotation.WebServlet;
  11. import javax.servlet.http.HttpServlet;
  12. import javax.servlet.http.HttpServletRequest;
  13. import javax.servlet.http.HttpServletResponse;
  14. /**
  15. *
  16. * @author megustas
  17. *
  18. */
  19. public class CheckcodeServlet extends HttpServlet {
  20. public void doGet(HttpServletRequest request, HttpServletResponse response)
  21. throws ServletException, IOException {
  22. int width = 120;
  23. int height = 30;
  24. // 1、创建一张 内存中缓冲图片
  25. BufferedImage bufferedImage = new BufferedImage(width, height,
  26. BufferedImage.TYPE_INT_RGB);
  27. // 2、背景色
  28. Graphics graphics = bufferedImage.getGraphics(); // 通过 graphics对象 绘制图片
  29. // 设置颜色
  30. graphics.setColor(Color.YELLOW);
  31. graphics.fillRect(0, 0, width, height);
  32. // 3、边框
  33. graphics.setColor(Color.BLUE);
  34. graphics.drawRect(0, 0, width - 1, height - 1);
  35. // 4、写验证码内容
  36. Graphics2D graphics2d = (Graphics2D) bufferedImage.getGraphics();
  37. graphics2d.setColor(Color.RED);
  38. // 设置字体
  39. graphics2d.setFont(new Font("宋体", Font.BOLD, 18));
  40. // String content =
  41. // "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";
  42. String content = "\u7684\u4e00\u4e86\u662f\u6211\u4e0d\u5728\u4eba\u4eec\u6709\u6765\u4ed6\u8fd9\u4e0a\u7740\u4e2a\u5730\u5230\u5927\u91cc\u8bf4\u5c31\u53bb\u5b50\u5f97\u4e5f\u548c\u90a3\u8981\u4e0b\u770b\u5929\u65f6\u8fc7\u51fa\u5c0f\u4e48\u8d77\u4f60\u90fd\u628a\u597d\u8fd8\u591a\u6ca1\u4e3a\u53c8\u53ef\u5bb6\u5b66\u53ea\u4ee5\u4e3b\u4f1a\u6837\u5e74\u60f3\u751f\u540c\u8001\u4e2d\u5341\u4ece\u81ea\u9762\u524d\u5934\u9053\u5b83\u540e\u7136\u8d70\u5f88\u50cf\u89c1\u4e24\u7528\u5979\u56fd\u52a8\u8fdb\u6210\u56de\u4ec0\u8fb9\u4f5c\u5bf9\u5f00\u800c\u5df1\u4e9b\u73b0\u5c71\u6c11\u5019\u7ecf\u53d1\u5de5\u5411\u4e8b\u547d\u7ed9\u957f\u6c34\u51e0\u4e49\u4e09\u58f0\u4e8e\u9ad8\u624b\u77e5\u7406\u773c\u5fd7\u70b9\u5fc3\u6218\u4e8c\u95ee\u4f46\u8eab\u65b9\u5b9e\u5403\u505a\u53eb\u5f53\u4f4f\u542c\u9769\u6253\u5462\u771f\u5168\u624d\u56db\u5df2\u6240\u654c\u4e4b\u6700\u5149\u4ea7\u60c5\u8def\u5206\u603b\u6761\u767d\u8bdd\u4e1c\u5e2d\u6b21\u4eb2\u5982\u88ab\u82b1\u53e3\u653e\u513f\u5e38\u6c14\u4e94\u7b2c\u4f7f\u5199\u519b\u5427\u6587\u8fd0\u518d\u679c\u600e\u5b9a\u8bb8\u5feb\u660e\u884c\u56e0\u522b\u98de\u5916\u6811\u7269\u6d3b\u90e8\u95e8\u65e0\u5f80\u8239\u671b\u65b0\u5e26\u961f\u5148\u529b\u5b8c\u5374\u7ad9\u4ee3\u5458\u673a\u66f4\u4e5d\u60a8\u6bcf\u98ce\u7ea7\u8ddf\u7b11\u554a\u5b69\u4e07\u5c11\u76f4\u610f\u591c\u6bd4\u9636\u8fde\u8f66\u91cd\u4fbf\u6597\u9a6c\u54ea\u5316\u592a\u6307\u53d8\u793e\u4f3c\u58eb\u8005\u5e72\u77f3\u6ee1\u65e5\u51b3\u767e\u539f\u62ff\u7fa4\u7a76\u5404\u516d\u672c\u601d\u89e3\u7acb\u6cb3\u6751\u516b\u96be\u65e9\u8bba\u5417\u6839\u5171\u8ba9\u76f8\u7814\u4eca\u5176\u4e66\u5750\u63a5\u5e94\u5173\u4fe1\u89c9\u6b65\u53cd\u5904\u8bb0\u5c06\u5343\u627e\u4e89\u9886\u6216\u5e08\u7ed3\u5757\u8dd1\u8c01\u8349\u8d8a\u5b57\u52a0\u811a\u7d27\u7231\u7b49\u4e60\u9635\u6015\u6708\u9752\u534a\u706b\u6cd5\u9898\u5efa\u8d76\u4f4d\u5531\u6d77\u4e03\u5973\u4efb\u4ef6\u611f\u51c6\u5f20\u56e2\u5c4b\u79bb\u8272\u8138\u7247\u79d1\u5012\u775b\u5229\u4e16\u521a\u4e14\u7531\u9001\u5207\u661f\u5bfc\u665a\u8868\u591f\u6574\u8ba4\u54cd\u96ea\u6d41\u672a\u573a\u8be5\u5e76\u5e95\u6df1\u523b\u5e73\u4f1f\u5fd9\u63d0\u786e\u8fd1\u4eae\u8f7b\u8bb2\u519c\u53e4\u9ed1\u544a\u754c\u62c9\u540d\u5440\u571f\u6e05\u9633\u7167\u529e\u53f2\u6539\u5386\u8f6c\u753b\u9020\u5634\u6b64\u6cbb\u5317\u5fc5\u670d\u96e8\u7a7f\u5185\u8bc6\u9a8c\u4f20\u4e1a\u83dc\u722c\u7761\u5174\u5f62\u91cf\u54b1\u89c2\u82e6\u4f53\u4f17\u901a\u51b2\u5408\u7834\u53cb\u5ea6\u672f\u996d\u516c\u65c1\u623f\u6781\u5357\u67aa\u8bfb\u6c99\u5c81\u7ebf\u91ce\u575a\u7a7a\u6536\u7b97\u81f3\u653f\u57ce\u52b3\u843d\u94b1\u7279\u56f4\u5f1f\u80dc\u6559\u70ed\u5c55\u5305\u6b4c\u7c7b\u6e10\u5f3a\u6570\u4e61\u547c\u6027\u97f3\u7b54\u54e5\u9645\u65e7\u795e\u5ea7\u7ae0\u5e2e\u5566\u53d7\u7cfb\u4ee4\u8df3\u975e\u4f55\u725b\u53d6\u5165\u5cb8\u6562\u6389\u5ffd\u79cd\u88c5\u9876\u6025\u6797\u505c\u606f\u53e5\u533a\u8863\u822c\u62a5\u53f6\u538b\u6162\u53d4\u80cc\u7ec6";
  43. // 内容四个字 --- 随机从content中抽取四个字
  44. Random random = new Random();
  45. int x = 10;
  46. int y = 20;
  47. StringBuffer stringBuffer = new StringBuffer();
  48. for (int i = 0; i < 4; i++) {
  49. // 循环四次
  50. // 为字 生成旋转角度 -30 ---- 30
  51. double jiaodu = random.nextInt(60) - 30;
  52. // 将旋转角度 换算弧度
  53. double theta = jiaodu / 180 * Math.PI;
  54. System.out.println(theta);
  55. int index = random.nextInt(content.length());
  56. char letter = content.charAt(index); // letter 验证码内容
  57. stringBuffer.append(letter);
  58. graphics2d.rotate(theta, x, y);
  59. graphics2d.drawString(letter + "", x, y);
  60. // 将角度还原
  61. graphics2d.rotate(-theta, x, y);
  62. x += 30;
  63. }
  64. // 将StringBuffer中四个字 转换 String
  65. String checkcode = stringBuffer.toString();
  66. // 将验证码存入session
  67. request.getSession().setAttribute("checkcode_session", checkcode);
  68. // 5 绘制随机干扰线
  69. int x1;
  70. int x2;
  71. int y1;
  72. int y2;
  73. graphics.setColor(Color.LIGHT_GRAY);
  74. for (int i = 0; i < 10; i++) {
  75. x1 = random.nextInt(width);
  76. x2 = random.nextInt(width);
  77. y1 = random.nextInt(height);
  78. y2 = random.nextInt(height);
  79. // 根据两点 绘制直线
  80. graphics.drawLine(x1, y1, x2, y2);
  81. }
  82. // 内存中资源 释放
  83. graphics.dispose();
  84. // 将图片输出到 浏览器 ImageIO
  85. // 将内存的图片 通过 浏览器输出流 写成 jpg格式图片
  86. ImageIO.write(bufferedImage, "jpg", response.getOutputStream());
  87. }
  88. public void doPost(HttpServletRequest request, HttpServletResponse response)
  89. throws ServletException, IOException {
  90. doGet(request, response);
  91. }
  92. }

验证码从session获取后,马上删除 —- 验证码只能使用一次 ,完整代码可以在https://coding.net/u/TwistFate/p/Login/git进行下载。

发表评论

表情:
评论列表 (有 0 条评论,289人围观)

还没有评论,来说两句吧...

相关阅读

    相关 登录验证实现

    前言: 验证码,是一种区分用户是计算机还是人的公共全自动程序。可以防止:恶意破解密码、刷票、论坛灌水,有效防止某个黑客对某一个特定注册用户用特定程序暴力破解方式进行不断的