Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对jsp没有太多经验。在java中我可以,但是打开一个块不好 <% %>
您可以使用 JSTL foreach 来迭代 HashMap。
<c:forEach var="type" items="${yourMap}"> Key is ${type.key} Value is ${type.value} </c:forEach>
注意:如果您使用的是 Tomcat,则需要将 JSTL 库显式复制到类路径。我知道的其他服务器默认带有 JSTL。