Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having map like this,

Map<Integer,ArrayList<Object>> myMap = new LinkedHashMap<Integer,ArrayList<Object>>();

Now i have to iterate this Map and then the ArrayList inside the map. How can i do this using jstl.

share|improve this question

3 Answers

up vote 26 down vote accepted

You can use JSTL c:forEach tag to iterate over collections and maps. In case of maps, every iteration will give you a Map.Entry which in turn has getKey() and getValue() methods.

Here's a basic example:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<c:forEach items="${map}" var="entry">
    Key = ${entry.key}, value = ${entry.value}<br>
<c:forEach>

In your particular case, the ${entry.value} is actually a List, thus you need to iterate over it as well:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<c:forEach items="${map}" var="entry">
    Key = ${entry.key}, values = 
    <c:forEach items="${entry.value}" var="item" varStatus="loop">
        ${item} ${!loop.last ? ', ' : ''}
    </c:forEach><br>
<c:forEach>

The varStatus is there just for convenience ;)

To understand better what's all going on here, here's a raw Java translation:

for (Entry<String, List<Object>> entry : map.entrySet()) {
    out.print("Key = " + entry.getKey() + ", values = ");
    for (Iterator<Object> iter = entry.getValue().iterator(); iter.hasNext();) {
        Object item = iter.next();
        out.print(item + (iter.hasNext() ? ", " : ""));
    }
    out.println();
}
share|improve this answer
3  
i like the way u used '${!loop.last ? ', ' : ''}' :D – Rakesh Juyal Jan 24 '10 at 5:24
1  
You can find more methods here: java.sun.com/products/jsp/jstl/1.1/docs/api/javax/servlet/jsp/… The ${loop.index}, ${loop.first} and ${loop.last} are most useful here. – BalusC Jan 24 '10 at 5:47
yay ! Thanks for this post. This matches exactly my case which uses map.value as a list :) – Vdt Oct 14 '11 at 15:38
@nXqd: You're welcome. – BalusC Oct 14 '11 at 15:39

Did you try something like this?

<c:forEach var='item' items='${map}'>
    <c:forEach var='arrayItem' items='${item.value}' />
      ...
    </c:forEach>
</c:forEach>
share|improve this answer
And of course, you might want to output ${item.key} between the two foreach statements. – Powerlord Jan 22 '10 at 14:05

you haven't closed c tag.try out this

 <c:forEach items="${logMap}" var="entry">
        Key = ${entry.key}, values = 
        <c:forEach items="${entry.value}" var="item" varStatus="loop">
            ${item} ${!loop.last ? ', ' : ''}
        </c:forEach><br>
    </c:forEach>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.