菜鸟的博客

纵有疾风起,人生不言弃。

导航

学到一个可以存储账号密码的方法

// 登录成功后,将用户名存储在 HttpSession 中
HttpSession session = request.getSession();
session.setAttribute("username", username); // 假设这里的 username 是登录成功的用户名


// 在后续页面中获取保存在 HttpSession 中的用户名
HttpSession session = request.getSession();
String username = (String) session.getAttribute("username");

 

posted on 2023-11-28 22:31  hhmzd233  阅读(17)  评论(0编辑  收藏  举报