请给出JSTL里面的c:forEach标签例子
c:forEach标签
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
完成诸如显示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"%>
<html>
<body>
<%
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);
%>
<c:forEach var="book" items="${booksq}" begin="1" end="3" step="1">
<c:out value="${book}"/><br>
</c:forEach>
</body>
</html>
运行jsp后,浏览器中输出结果是:
JSTL入门
C++精通
C++精通2