我是编程新手,我只是想知道如何检索会话并在jsp页面中显示它的内容?我在java中编写代码。谢谢你的帮助。
答案 0 :(得分:2)
session.getAttribute("attributeName")
试试看:How to use session in jsp pages to get information?
下次尝试谷歌更多。我输入了“java jsp get session”,它给了我上面的链接。
答案 1 :(得分:1)
JSP包含隐式对象,您可以从会话中获取值。
其中一些方法是
Methods of session object:
setAttribute(String, object)
getAttribute(String name)
getAttributeNames
isNew()
getCreationTime
getId
invalidate()
getLastAccessedTime
getMaxInactiveInterval
removeAttribute(String name)
参考link
答案 2 :(得分:1)
<%
String name = (String) session.setAttribute("attribute_name");
%>
答案 3 :(得分:1)
看看这里:
您可以通过以下方式从会话中获取数据:
String name = request.getParameter( "username" );
也很容易添加:
session.setAttribute( "theName", name );