jstl标签foreach JSTL中forEach标签应用示例

JSTL中forEach标签应用示例――简介

JSTL中forEach是使用频率最多的一个标签,用来遍历数组,对象。

JSTL中forEach标签应用示例――方法/步骤

JSTL中forEach标签应用示例 1、

UserInfo.java

public class UserInfo {

jstl标签foreach JSTL中forEach标签应用示例

private Integer userId;

private String userName;

public Integer getUserId() {

return userId;

}

public void setUserId(Integer userId) {

this.userId = userId;

}

public String getUserName() {

return userName;

}

public void setUserName(String userName) {

this.userName = userName;

}

public UserInfo(Integer userId, String userName) {

this.userId = userId;

this.userName = userName;

}

}


JSTL中forEach标签应用示例 2、

<%@page import="jstl.UserInfo"%>

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>

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

<html>

<head>

<title>forEach标签应用示例</title>

</head> <body>

<h2>forEach标签应用示例</h2>

<hr>

<%

//定义一个用户数组

String[] zhangs={"zhang1","zhang2","zhang3","zhang4"};

request.setAttribute("zhangsan",zhangs);

%>

<table border=1 width=400>

<tr align=center >

<td>内容</td>

<td>索引值</td>

<td>共访问过</td>

<td>是否为第一个成员</td>

<td>是否为最后一个成员</td>

</tr>

<c:forEach items="${zhangsan}" var="z" varStatus="s">

<tr align=center>

<td><c:out value="${z}"/></td>

<td><c:out value="${s.index}"/></td>

<td><c:out value="${s.count}"/></td>

<td><c:out value="${s.first}"/></td>

<td><c:out value="${s.last}"/></td>

</tr>

</c:forEach>

</table>

<hr/><%

List list = new ArrayList();

for(int i=0;i<10;i++){

UserInfo user = new UserInfo(i,"张"+i);

list.add(user);

}

request.setAttribute("list",list);

%>

<table border=1 width=400>

<tr align=center >

<td>编号</td>

<td>姓名</td>

</tr>

<c:forEach items="${list}" var="u" >

<tr align=center>

<td><c:out value="${u.userId}"/></td>

<td><c:out value="${ u.userName}"/></td>

</tr>

</c:forEach>

</table>

</body>

</html>

  

爱华网本文地址 » http://www.413yy.cn/a/8105010103/313919.html

更多阅读

关键绩效指标在绩效管理中的应用 什么是关键绩效指标

摘要:在人力资源管理中,员工绩效管理是一个非常重要的工作。员工绩效管理建立在关键绩效指标的基础上,通过业绩考核,并与相应的激励措施相结合,调动员工积极性,促使员工努力工作、不断提高绩效,最终实现企业的目标。本文将着重介绍关键绩

转载 总结DFN-LOW算法在图论中的应用 tarjan dfn和low

原文地址:总结DFN-LOW算法在图论中的应用作者:OIer_fc总结DFN-LOW算法在图论中的应用北京大学许若辰 长沙市雅礼中学 屈运华摘要: 在一个连通图[1]G中,有些点一旦被去除就会导致图不连通,同样的,有些边一旦被去除也会导致图G失去连通性,

声明:《jstl标签foreach JSTL中forEach标签应用示例》为网友花非花格调分享!如侵犯到您的合法权益请联系我们删除