How do use c:forEach JSTL tag?
Category: taglib / jstl, viewed: 2258 time(s).
The c:forEach tag in the core JSTL tag library is a useful tag when we want to iterate over a collection of data such as array. It is commonly use to render a tabular data in our web pages in form of HTML table.
In the example below we display a weather data that we stored as two dimensional array of string. After declaring and initializing the data with some value we put it into the request scope. Later on the c:forEach tag can use the data, iterates it row by row to form an HTML table. Our weather data consist of the date, condition and the high and low temperature.
Our JSP page above creates the following output:
5-Days Weather for Denpasar, Indonesia| DATE | CONDITION | TEMP. HIGH | TEMP. LOW |
|---|---|---|---|
| Nov 6 | Sunny | 32℃ | 26℃ |
| Nov 7 | Sunny | 32℃ | 26℃ |
| Nov 8 | Sunny | 32℃ | 26℃ |
| Nov 9 | Partly Cloudy | 32℃ | 26℃ |
| Nov 10 | Isolated T-Storms | 32℃ | 26℃ |
Download Hundreds of Complimentary Industry Resources
Get hundreds of popular Industry magazines, white papers, webinars, podcasts, and more;
all available at no cost to you. With more than 600 complimentary offers, you'll find
plenty of titles to suit your professional interests and needs.
Click Here and Sign up today!
Related Examples
|
|


