[Java/Jsp] c:forEach index의 처음, 마지막, 카운트 값 구하기
2014. 4. 11. 16:00ㆍ프로그래밍/Java
1. c:forEach 사용 시 index의 처음, 마지막, 카운트 값
1) 처음값 first : 리턴 타입 boolean
2) 마지막값 last : 리턴 타입 boolean
3) 카운트 count : 리턴 타입 숫자
EX)
<c:forEach var="fileList" items="${fileList }" varStatus="index">
<c:if test="${!index.first }">처음 </c:if>
<c:if test="${!index.last }">마지막 </c:if>
카운트 : ${List.count}
</c:forEach>
'프로그래밍 > Java' 카테고리의 다른 글
[Java] java.lang.IllegalStateException: Cannot create a session after the response has been committed (2) | 2014.04.21 |
---|---|
[Java] "\" replace 하기 (0) | 2014.04.11 |
Attribute qualified names must be unique within an element 에러 해결 (0) | 2014.04.10 |
[Java] Java에서 Shell command 실행 (0) | 2014.03.07 |
[Java&Jsp] Html tag 제거하는 방법 & 주석제거하는 방법 (0) | 2014.03.05 |