请给出JSTL里面的c:forEach标签例子


7)c:forEach标签

完成诸如显示ArrayList内容的功能:

例 2.2.7

<%@ page contentType="text/html; charset=GBK"%>
<%@ page import="java.util.*"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>


<%
   ArrayList books=new ArrayList();
   books.add(new String("java入门"));
   books.add(new String("JSTL入门"));
   books.add(new String("C++精通"));
   books.add(new String("C++精通2"));
   books.add(new String("C++精通3"));
   books.add(new String("C++精通4"));
 /*note that you must use the following stetement to make the code inside scriptlet available
to the jsp page. */
   pageContext.setAttribute("booksq",books);
%>
  
     

  




更多请看:https://blog.csdn.net/qq_44594371/article/details/103186146