如何在servlet中使用session????
顶头引用了HttpSessiondoPostHttpSessionhs=newHttpSession();最后一段报错“can'tinstantiatethetypeHt...
顶头引用了HttpSession
doPost HttpSession hs =new HttpSession();
最后一段报错“can't instantiate the type HttpSession”
该怎么正确使用session?! 展开
doPost HttpSession hs =new HttpSession();
最后一段报错“can't instantiate the type HttpSession”
该怎么正确使用session?! 展开
3个回答
展开全部
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
//通过request得到session
request.getSession().setAttribute(arg0, arg1);
}
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
//通过request得到session
request.getSession().setAttribute(arg0, arg1);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
HttpSession hs =new HttpSession();
hs.setAttribute(key, value);
hs.setAttribute(key, value);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
request.getSession();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询