c:foreach遍历和s:iterator遍历异同

①jstl c:foreach

首先我们来看一个普通的servlet:
import com.xy.entity.Board;
import com.xy.entity.Topic;
import com.xy.entity.User;

public class ToMainAction extends HttpServlet
{
 private IBoarderDao boardDao = new BoardDaoImpl();
 private ITopicDao topicDao = new TopicDaoImpl();
 private IUserDao userDao = new UserDaoImpl();

 public void doGet(HttpServletRequest request, HttpServletResponse response)
                                      throws ServletException,IOException
 {
  // 板块列表
  List<Board> boards = boardDao.getAllBoard();
  List<Integer> count = new ArrayList<Integer>();
  List<User> users = new ArrayList<User>();
  List<Topic> lastTopic = new ArrayList<Topic>();

  if (null != boards)
  {
   for (Board b : boards)
   {
    // 回帖数
    List<Topic> topic = topicDao.getTopicByBoardId(b.getborderId());
    if(null!=topic)
    {
     int num = topic.size();
     count.add(num);
    }
    else
    {
     count.add(0);
    }

    // 最近更新
    Topic t = topicDao.getLastTopic(b.getborderId());
    lastTopic.add(t);

    // 最近更新的作者
    User u = userDao.getUserByuId(t.getUid());
    users.add(u);
   }

   request.setAttribute("boards", boards);
   request.setAttribute("count", count);
   request.setAttribute("users", users);
   request.setAttribute("lastTopic", lastTopic);

   RequestDispatcher dis = request.getRequestDispatcher("main.jsp");
   dis.forward(request, response);
  }

 }

 public void doPost
        (HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
 {
  this.doGet(request, response);
 }

}

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

<c:if test="${requestScope.boards!=null}">
 <c:forEach var="b" items="${requestScope.boards}" varStatus="status">
  <tr>
  <td width="6%" height="68">
  </td>
  <td width="67%">
   <div align="left" class="blueSpan">
   <img src="images/topic.gif" width="18" height="21" />
         
   <a href="logined/ToListAction?boardId=${b.borderId}">
   ${b.borderName}</a>
   </div>
  </td>
  <td>
   ${requestScope.count[status.index]}
  </td>
  <td>
   <p align="left">
    ${requestScope.lastTopic[status.index].title}
   </p>
   <br />
   <p align="left">
                 ${requestScope.users[status.index].userName}
   </p>
   <br />
   <p align="left">
   修改时间:
   <br>
   ${requestScope.lastTopic[status.index].modifyTime}
   </p>
   <br />
  </td>
 </tr>
      
 </c:forEach>
</c:if>

 

②s:iterator
package com.xy.action;

action
public class ToMainAction extends ActionSupport implements RequestAware
{
 private IBoarderDao boardDao = new BoardDaoImpl();
 private ITopicDao topicDao = new TopicDaoImpl();
 private IUserDao userDao = new UserDaoImpl();
 private Map<String, Object> request;

 public void setBoardDao(IBoarderDao boardDao)
 {
  this.boardDao = boardDao;
 }

 public void setTopicDao(ITopicDao topicDao)
 {
  this.topicDao = topicDao;
 }

 public void setUserDao(IUserDao userDao)
 {
  this.userDao = userDao;
 }

 public String execute()
 {
  // 板块列表
  List<Board> boards = boardDao.getAllBoard();
  List<Integer> count = new ArrayList<Integer>();
  List<User> users = new ArrayList<User>();
  List<Topic> lastTopic = new ArrayList<Topic>();

  if (null != boards)
  {
   for (Board b : boards)
   {
    // 回帖数
    List<Topic> topic = topicDao.getTopicByBoardId(b.getBorderId());
    if (null != topic)
    {
     int num = topic.size();
     count.add(num);
    } else
    {
     count.add(0);
    }

    // 最近更新
    Topic t = topicDao.getLastTopic(b.getBorderId());
    lastTopic.add(t);

    // 最近更新的作者
    User u = userDao.getUserByuId(t.getUid());
    users.add(u);
   }

   request.put("boards", boards);
   request.put("count", count);
   request.put("users", users);
   request.put("lastTopic", lastTopic);
  }
  return SUCCESS;
 }

 public void setRequest(Map<String, Object> request)
 {
  this.request = request;
 }
}

main.jsp

<%@ taglib uri="/struts-tags" prefix="s"%>

<s:if test="#request.boards!=null">
 <s:iterator value="#request.boards" id="b" status="st">
 <tr>
  <td width="6%" height="68">
  </td>
  <td width="67%">
      <div align="left" class="blueSpan">
   <img src="images/topic.gif" width="18" height="21" />
    <a href="logined/ToListAction?boardId="+<s:property value="#b.borderId"/>+">
     <s:property value="#b.borderName" />
    </a>
    </div>
  </td>
  <td>
   <s:property value=" #request.count[#st.index]" />
  </td>
  <td>
  <br />
   <p align="left">
   <s:property value="#request.lastTopic[#st.index].title" />
   </p>
  <br />
   <p align="left">
   <s:property value=" #request.lastTopic[#st.index].userName" />
   </p>
  <br />
   <p align="left">
   修改时间:
  <br/>
   <s:property value=" #request.lastTopic[#st.index].modifyTime" />
   </p>
   <br />
  </td>
  </tr>
        </s:iterator>
</s:if>

时间: 2024-10-31 21:37:29

c:foreach遍历和s:iterator遍历异同的相关文章

JSP中c:foreach遍历和s:iterator遍历异同实例分析_JSP编程

本文实例分析了JSP中c:foreach遍历和s:iterator遍历的异同.分享给大家供大家参考.具体如下: ①jstl c:foreach 首先我们来看一个普通的servlet: import com.xy.entity.Board; import com.xy.entity.Topic; import com.xy.entity.User; public class ToMainAction extends HttpServlet { private IBoarderDao boardDa

如何在遍历中使用iterator及reverse_iterator删除元素

众所周知,在使用迭代器遍历 STL 容器时,需要特别留意是否在循环中修改了迭代器而导致迭代器失效的情形.下面我来总结一下在对各种容器进行正向和反向遍历过程中删除元素时,正确更新迭代器的用法.本文完整源码:https://code.csdn.net/snippets/173595 首先,要明白使用正向迭代器(iterator)进行反向遍历是错误的用法,要不干嘛要有反向迭代器呢(reverse_iterator).其次,根据容器的特性,遍历删除操作的用法可以分为两组,第一组是 list 和 vect

java-TreeSet的Iterator遍历问题

问题描述 TreeSet的Iterator遍历问题 TreeSetset = new TreeSet(); set.add("one1"); set.add("two1"); set.add("three1"); for(Iterator it =set.iterator();it.hasNext();) { String str = it.next(); System.out.println(str); if(str.equals("

java中map为什么不能直接使用iterator遍历?

问题描述 java中map为什么不能直接使用iterator遍历? 求教大神:直接使用map的时候方法中不会显示iterator方法,而是要写Set set = map.keySet();才可以使用iterator方法,为什么map和set同为集合,map就不可以直接使用iterator方法?内部逻辑是什么? 解决方案 只有实现的collection集合才有iterator方法,比如List和se接口:而Map接口不能使用iterator方法,需要现获取set视图,即Set set = map.

JavaScript使用forEach()与jQuery使用each遍历数组时return false 的区别_javascript技巧

 原生js使用forEach()与jquery使用each()遍历数组,return false 的区别: 1.使用each()遍历数组a,如下: var a=[20,21,22,23,24]; $.each(a, function(index,val) { console.log('index='+index); if(index==2){ return false; } console.log('val='+val); }); 结果如下: 从运行的效果可以看出,return 相当于循环中的b

使用Enumeration和Iterator遍历集合类详解_java

前言在数据库连接池分析的代码实例中,看到其中使用Enumeration来遍历Vector集合.后来就找了一些资料查看都有哪些方法可以遍历集合类,在网上找到了如下的使用Enumeration和Iterator遍历集合类的实例.不过这个实例中提到了Enumeration比Iterator的效率更高,其实并不是这样子的,该实例是的时间测试太片面了, 因为数据量太少.随着数据两的增加,两者之间的效率越来越接近,而不会出现倍数的比例.而且现在普遍都使用Iterator来遍历集合类,只有特别明确声明必须使用

UVa 548 Tree:中序遍历&amp;amp;后序遍历&amp;amp;DFS

548 - Tree Time limit: 3.000 seconds http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=104&page=show_problem&problem=489 You are to determine the value of the leaf node in a given binary tree that is the termina

二叉树的创建、前序遍历、中序遍历、后序遍历

// BTree.cpp : Defines the entry point for the console application. /* 作者:成晓旭 时间:2001年7月2日(9:00:00-14:00:00) 内容:完成二叉树的创建.前序遍历.中序遍历.后序遍历 时间:2001年7月2日(14:00:00-16:00:00) 内容:完成二叉树的叶子节点访问,交换左.右孩子 */ #include "stdafx.h" #include "stdlib.h"

知道二叉树的后序遍历和中序遍历求深度的代码那有错?

问题描述 知道二叉树的后序遍历和中序遍历求深度的代码那有错? #include #include #include char zhongxu[100]; char houxu[100]; struct node { char data; struct node *l,*r; }*T,*TT; int treedepth(struct node *TT) { int i,j; if(!TT) return 0; i=treedepth(TT->l); j=treedepth(TT->r); re