当前位置: 代码迷 >> Java Web开发 >> [求助]如何读取嵌套式数组的值
  详细解决方案

[求助]如何读取嵌套式数组的值

热度:233   发布时间:2006-04-07 09:27:00.0
[求助]如何读取嵌套式数组的值
请教高手们:
我有一个从数据库读取的vector(名叫:output).它的每一个元素是由三个vector组成的,请问我如何在jsp里面显示出来?


我在form action里用的是:
Vector output = db.selectTransactionByConditionDate(conditions,fromtimestamp,totimestamp,sform.getCondition());
request.setAttribute("output", output);

原来是一个单一向量的vector的时候,在jsp中我是用的:

<logic:iterate id="item" name="output">
<bean:write name="item" property="orderid" />
<bean:write name="item" property="productname" />
<bean:write name="item" property="type" />
</logic:iterate>

我要如何修改才可以读取现在的复合向量里面的每个向量的值呢?

先谢谢了!
搜索更多相关主题的帖子: 嵌套  

----------------解决方案--------------------------------------------------------
  相关解决方案