Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 servlet 的执行过程中呈现一个页面,并在用户提交 from 和重命名执行将使用该页面时继续执行。我们能做到这一点,请帮帮我。
使其成为两个 servlet,(或一个 servlet 并在表单中使用附加请求参数区分 2 个逻辑)。
如果您希望第一个 servlet 中的变量在第二个 servlet 中可用,请使用 Session。
设置正在使用
request.getSession().setAttribute("name", var);
并在第二个代码中使用
request.getSession().getAttribute("name");