2015-07-06 67 views

回答

4

這和你在java中一樣簡單。 我建議您在文件中安裝JSTL jar文件並使用taglibs。然後使用<c: forEach>標籤遍歷地圖並打印它們。

在你的情況下,

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

<table> 
    <c:forEach items="${map}" var="mapElement"> 
     <tr> 
      <td>${mapElement.key}</td> 
      <c:forEach items="${mapElement.value}" var="listElement" > 
       <td>${listElement}</td> 
      </c:forEach> 
     </tr> 
    </c:forEach> 
<table> 
相關問題