JSTL tags + El expression to display a collection of data to a JSP page list

JSP page

<%@ page import="cn.itcast.domain.User" %>
<%@ page import="java.util.List" %>
<%@ page import="java.util.ArrayList" %>
<%@ page import="java.util.Date" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<html>
<head>
<title>test</title>
</head>
<body>

<%

List list = new ArrayList();
list.add(new User("张三",23,new Date()));
list.add(new User("李四",24,new Date()));
list.add(new User("王五",25,new Date()));

request.setAttribute("list",list);


%>

<the Table border = "1" width = "500" align = left = "Center">
<TR>
<TH> ID </ TH>
<TH> Name </ TH>
<TH> Age </ TH>
<TH> birthday < / TH>
</ TR>
<% - rows -%>
<C: forEach items = "$ {List}" var = "User" varStatus = "S">

<c:if test="${s.count % 2 != 0}">

<tr bgcolor="red">
<td>${s.count}</td>
<td>${user.name}</td>
<td>${user.age}</td>
<td>${user.birStr}</td>
</tr>
</c:if>

<c:if test="${s.count % 2 == 0}">

<tr bgcolor="green">
<td>${s.count}</td>
<td>${user.name}</td>
<td>${user.age}</td>
<td>${user.birStr}</td>
</tr>
</c:if>

 


</c:forEach>

</table>

 

 


</body>
</html>

javaBean

public class User {

private String name;
private int age;
private Date birthday;


public User(String name, int age, Date birthday) {
this.name = name;
this.age = age;
this.birthday = birthday;
}

public User() {
}

/ **
* Logical View
* @return
* /
public String getBirStr () {

IF (= null Birthday!) {
//. 1 formatted date object.
the SimpleDateFormat the SimpleDateFormat SDF new new = ( "the MM-dd-YYYY HH: mm: SS");
. 2 // return the string to
return sdf.format ( birthday);

}else{
return "";
}
}


public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public int getAge() {
return age;
}

public void setAge(int age) {
this.age = age;
}

public Date getBirthday() {
return birthday;
}

public void setBirthday(Date birthday) {
this.birthday = birthday;
}
}

Guess you like

Origin www.cnblogs.com/shiguanzui/p/11723786.html