如果任何“ID”在Servlet类中设置了值,那么如何在我的jsp页面上访问该值。我知道有几种方法可以通过使用会话管理来获取值,但我厌倦了这样做。
请帮帮我。
提前致谢。
答案 0 :(得分:1)
通常,servlet调用HttpServletRequest.setAttribute在请求中放置键值对。然后jsp页面可以通过'request'jsp变量访问该值。
答案 1 :(得分:1)
从servlet中,在请求上下文中设置文件名:
request.setAttribute("filename", fileNameStr );
在JSP中编写:
<%=request.getAttribute("filename")%>
答案 2 :(得分:0)
通过会话非常简单,您无需处理页面之间的传递参数。
File 1:
String strVal = "one";
session.setAttribute("strVal",strVal);
File 2:
String strVal = (String)session.getAttribute("strVal");