首先,servlet文件开头导入
import javax.servlet.http.HttpSession;
在public void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
中加入
// 获取session
HttpSession session = req.getSession();
// 获取session传过来的值
String 字段名=(String)session.getAttribute("session的字段名");