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 中显示 List> 中的数据。那么如何在 JSP 中做到这一点呢?最好的方法是什么?例如;
List<Map> list=new ArrayList<Map>();
映射对象列表...我们将列表对象添加到 mainList。会是这样。。
List<List> mainList=new ArrayList<List>();
提前致谢!!!之前的回复非常感谢...
利用<c:forEach>
<c:forEach>
为了List<List> list
List<List> list
<c:forEach items="list" var="listOuter"> <c:forEach items="listOuter" var="listInner"> </c:forEach> </c:forEach>
另见