JSTL <c:forEach> Iterator -- Getting the Size
843835Jul 8 2002 — edited Jul 11 2002I'm using the <c:forEach> tag to loop through a Vector in a JSP. Prior to looping through the Vector I can test whether or not the Vector is null using:
<c:when test="${myVector == null}">
...do something else
</c:when>
What I really want to do is find out if the Vector has anything in it (eg -- it's size is GT 0).
Thanks...