原文: http://zetcode.com/articles/jstlforeach/

JSTL forEach教程展示了如何使用 JSTL 库中的forEach标签。

JSTL

JavaServerPages 标准标记库(JSTL)是有用的 JSP 标记的集合,这些标记提供了许多 JSP 应用所共有的核心功能。

forEach标签

JSTL <c:foreach>标签是基本的迭代标签。 它遍历各种 Java 集合类型。

<c:foreach>标记包含以下属性:

  • items - 要迭代的项目集合
  • begin - 起始项目的索引
  • end - 结束项目的索引
  • step - 迭代步骤
  • var - 迭代中当前项目的变量

forEach taglib 声明

<c:foreach>标记属于核心 JSTL 标记。

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

要使用标签,我们需要包含此声明。

JSTL Maven 依赖项

要使用 JSTL 库,我们需要以下 Maven 依赖项:

  1. <dependency>
  2. <groupId>jstl</groupId>
  3. <artifactId>jstl</artifactId>
  4. <version>1.2</version>
  5. </dependency>

forEach标签示例

以下 JSP 页面包含<c:foreach>标记。 除了<c:foreach>标签之外,我们还使用<c:out>显示变量。

index.jsp

  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>JSP Page</title>
  8. </head>
  9. <body>
  10. <c:forEach var="counter" begin="1" end="8">
  11. <c:out value="${counter}"/>
  12. </c:forEach>
  13. </body>
  14. </html>

该示例在输出中显示值1..8

forEach标签示例 II

下一个 JSP 示例读取从链接发送的参数。

index.html

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Start Page</title>
  5. <meta charset="UTF-8">
  6. </head>
  7. <body>
  8. <a href="target.jsp?name=Jane&age=23&occupation=accountant">Show page</a>
  9. </body>
  10. </html>

index.html页面包含一个链接,该链接将三个参数发送到target.jsp页面。

target.jsp

  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  2. <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>JSP Page</title>
  8. </head>
  9. <body>
  10. <c:forEach var="par" items="${param}">
  11. <c:out value="${par.key}"/>: <c:out value="${par.value}"/> <br>
  12. </c:forEach>
  13. </body>
  14. </html>

JSP 页面在隐式param对象(它是一个映射)中接收参数。

  1. <c:forEach var="par" items="${param}">
  2. <c:out value="${par.key}"/>: <c:out value="${par.value}"/> <br>
  3. </c:forEach>

我们遍历映射并打印键/值对。

forEach标签示例 III

HTML <select>是提供选项菜单的控件。 借助其multiple属性,用户可以从控件中选择多个值。

index.html

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Languages</title>
  5. <meta charset="UTF-8">
  6. </head>
  7. <body>
  8. <form action="target.jsp">
  9. <div>Select languages:</div>
  10. <select name="languages" size="7" multiple="multiple">
  11. <option value='Ada'>Ada</option>
  12. <option value='C'>C</option>
  13. <option value='C++'>C++</option>
  14. <option value='Cobol'>Cobol</option>
  15. <option value='Eiffel'>Eiffel</option>
  16. <option value='Objective-C'>Objective-C</option>
  17. <option value='Java'>Java</option>
  18. </select>
  19. <button type="submit">Submit</button>
  20. </form>
  21. </body>
  22. </html>

我们创建一个<select>控件,其中包含七个值。 当我们提交表单时,选定的值将发送到target.jsp文件。

target.jsp

  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  2. <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>Languages</title>
  8. </head>
  9. <body>
  10. <c:forEach items="${paramValues.languages}" var="lang">
  11. <c:out value="${lang}"/>
  12. </c:forEach>
  13. </body>
  14. </html>

可从隐式paramValues对象(它是一个映射)获得<select>控件的值。 关键是请求参数名称(languages),值在字符串数组中。

  1. <c:forEach items="${paramValues.languages}" var="lang">
  2. <c:out value="${lang}"/>
  3. </c:forEach>

我们遍历数组并打印其元素。

forEach标签示例 IV

以下示例在 HTML 表中显示数据。

index.html

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Start Page</title>
  5. <meta charset="UTF-8">
  6. </head>
  7. <body>
  8. <p>
  9. <a href="MyServlet">Show all cities</a>
  10. </p>
  11. </body>
  12. </html>

index.html页面中,我们有一个调用MyServlet的链接。 Servlet 使用服务方法加载数据,并分派到 JSP 页面。

City.java

  1. package com.zetcode.bean;
  2. public class City {
  3. private Long id;
  4. private String name;
  5. private int population;
  6. public Long getId() {
  7. return id;
  8. }
  9. public void setId(Long id) {
  10. this.id = id;
  11. }
  12. public City(Long id, String name, int population) {
  13. this.id = id;
  14. this.name = name;
  15. this.population = population;
  16. }
  17. public String getName() {
  18. return name;
  19. }
  20. public void setName(String name) {
  21. this.name = name;
  22. }
  23. public int getPopulation() {
  24. return population;
  25. }
  26. public void setPopulation(int population) {
  27. this.population = population;
  28. }
  29. }

这是City类; 它包含idnamepopulation属性。

MyServlet.java

  1. package com.zetcode.web;
  2. import com.zetcode.bean.City;
  3. import com.zetcode.service.CityService;
  4. import java.io.IOException;
  5. import java.util.List;
  6. import javax.servlet.ServletException;
  7. import javax.servlet.annotation.WebServlet;
  8. import javax.servlet.http.HttpServlet;
  9. import javax.servlet.http.HttpServletRequest;
  10. import javax.servlet.http.HttpServletResponse;
  11. @WebServlet(name = "MyServlet", urlPatterns = {"/MyServlet"})
  12. public class MyServlet extends HttpServlet {
  13. @Override
  14. protected void doGet(HttpServletRequest request, HttpServletResponse response)
  15. throws ServletException, IOException {
  16. response.setContentType("text/html;charset=UTF-8");
  17. List<City> cities = CityService.getAllCities();
  18. request.setAttribute("cities", cities);
  19. request.getRequestDispatcher("showCities.jsp").forward(request, response);
  20. }
  21. }

Servlet 使用CityService.getAllCities()读取数据,使用setAttribute()将列表对象设置为属性,然后转发到showCities.jsp

CityService.java

  1. package com.zetcode.service;
  2. import com.zetcode.bean.City;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. public class CityService {
  6. public static List<City> getAllCities() {
  7. List<City> cities = new ArrayList<>();
  8. cities.add(new City(1L, "Bratislava", 432000));
  9. cities.add(new City(2L, "Budapest", 1759000));
  10. cities.add(new City(3L, "Prague", 1280000));
  11. cities.add(new City(4L, "Warsaw", 1748000));
  12. cities.add(new City(5L, "Los Angeles", 3971000));
  13. cities.add(new City(6L, "New York", 8550000));
  14. cities.add(new City(7L, "Edinburgh", 464000));
  15. cities.add(new City(8L, "Berlin", 3671000));
  16. return cities;
  17. }
  18. }

getAllCities()方法返回城市列表。

showCities.jsp

  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  2. <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>Cities</title>
  8. </head>
  9. <body>
  10. <h2>Cities</h2>
  11. <table>
  12. <thead>
  13. <tr>
  14. <th>Id</th>
  15. <th>Name</th>
  16. <th>Population</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <c:forEach items="${cities}" var="city">
  21. <tr>
  22. <td>${city.id}</td>
  23. <td>${city.name}</td>
  24. <td>${city.population}</td>
  25. </tr>
  26. </c:forEach>
  27. </tbody>
  28. </table>
  29. </body>
  30. </html>

showCities.jsp中,我们在带有<c:forEach>标签的 HTML 表格中显示城市。

  1. <td>${city.id}</td>
  2. <td>${city.name}</td>
  3. <td>${city.population}</td>

使用点运算符从城市对象读取属性。

在本教程中,我们介绍了 JSTL 库中的<c:forEach>标签。

您可能也会对以下相关教程感兴趣: Java servlet JSON 教程Java servlet 复选框教程Java servlet 图像教程Java Servlet HTTP 标头Java 教程