<%@page import="java.util.Enumeration"%>
<%
for (Enumeration<?> e = session.getAttributeNames(); e.hasMoreElements();) {
String key = (String) e.nextElement();
out.println(key + "=" + session.getAttribute(key) + "<br>");
}
%>


相关文章:

  • 2021-10-01
  • 2022-12-23
  • 2021-06-05
  • 2021-09-20
  • 2021-11-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案