<table border="1">

<tr>

<td colspan="2">Session 영역에 저장된 내용들</td>

</tr>

<%

Enumeration e = session.getAttributeNames();

while (e.hasMoreElements()) {

String attributeName = (String) e.nextElement();

String attributeValue = (String) session.getAttribute(attributeName);

%>

<tr>

<td><%=attributeName%></td>

<td><%=attributeValue%></td>

</tr>

<%

}

%>

</table>


getAttributeNames()메소드는 Enumeration타입으로 변수를 만들어줌




Enumeration 메소스 인터페이스

boolean hasMoreElements() 

 Vector로 부터 생성된 Enumeration의 요소가 있으면 true, 아니면       false 반환

Object nextElement() 

 Enumeration 내의 다음 요소를 반환한다. 


'JAVA > JSP' 카테고리의 다른 글

Jsp page 지시어  (0) 2015.08.19
Jsp a태그로 값넘기기(페이지 전환)  (1) 2015.08.19
JSP Scope & Attribute  (0) 2015.08.19
JSP session을 배열로 처리하기  (0) 2015.08.13
JSP 내장객체 application  (0) 2015.08.13
블로그 이미지

왕왕왕왕

,