使用 JSTL 在映射中循环

我希望让 JSTL 循环通过一个 Map<String, String>并输出键的值和它的值。

For example I have a Map<String, String> which can have any number of entries, i'd like to loop through this map using JSTL and output both the key and it's value.

我知道如何使用键 ${myMap['keystring']}访问值,但是如何访问键?

111819 次浏览

像这样:

<c:forEach var="entry" items="${myMap}">
Key: <c:out value="${entry.key}"/>
Value: <c:out value="${entry.value}"/>
</c:forEach>

您可以像这样循环使用散列映射

<%
ArrayList list = new ArrayList();
TreeMap itemList=new TreeMap();
itemList.put("test", "test");
list.add(itemList);
pageContext.setAttribute("itemList", list);
%>


<c:forEach items="${itemList}" var="itemrow">
<input  type="text"  value="<c:out value='${itemrow.test}'/>"/>
</c:forEach>

有关更多 JSTL 功能,请查看 给你