当前位置: 代码迷 >> JavaScript >> jsp 遍历list,该如何解决
  详细解决方案

jsp 遍历list,该如何解决

热度:163   发布时间:2012-03-20 14:01:10.0
jsp 遍历list
Java code

Action.java 中有这样的方法。
public String print()throws Exception
    {  
    
        List<AdAccountBook> list=(List<AdAccountBook>) adAccountBookManager.getList(searchKey, approveStatus);
//        System.out.println(list.get(0));
        success=true;
        return SUCCESS;
    }


怎样在jsp 页面遍历list的内容 如 id,content ,显示在table 中

------解决方案--------------------
探讨
CSS code

private List<AdAccountBook> list;
list的setter/getter方法,要添加

public String print()throws Exception
{

list=(List<AdAccountBook>) adAccountBookManager.getList(searchK……
  相关解决方案