日期:2014-05-16  浏览次数:20326 次

在jsp中如何遍历hashmap

<c:forEach var="item" items="${map}">
map键名:${item.key}   map键值: ${item.value} <br>
</c:forEach>
?