Iterate主要用来处理在页面上输出集合类,集合一般来说是下列之一: 1、 java对象的数组 2、 ArrayList、Vector、HashMap等
该标记的功能强大,在Struts应用的页面中经常使用到。
iterate标记 : id 脚本变量的名称,它保存着集合中当前元素的句柄。 name 代表了你需要叠代的集合,来自session或者request的属性。 type 是其中的集合类元素的类型
bean的write标记是用来将属性输出的,name用来匹配iterate的id,property用来匹配相应类的属性
1、对数组进行循环遍历
<table width="100%"> <logic:iterate type=" example.User "> <tr><td width="50%"> name: <bean:write property="name"/> <td/><td width="50%"> password: <bean:write property="password"/> </td> </tr> </logic:iterate> </table>
另外,还可以通过length属性来指定输出元素的个数,offset属性指定了从第几个元素开始输出。
<% String[] testArray={"str1","str2","str3"}; pageContext.setAttribute("test",testArray); % <logic:iterate id="show" name="test"> <bean:write name="show"/> </logic:iterate> <br> <logic:iterate id="show" name="test" length="2" offset="1"> <bean:write name="show"/> </logic:iterate>
结果: str1 str2 str3
str2 str3
另外,该标记还有一个indexId属性,它指定一个变量存放当前集合中正被访问的元素的序号 <logic:iterate length="2" offset="1" indexId="number"> <bean:write name="number"/>:<bean:write name="show"/> </logic:iterate> 其显示结果为: 1:str2 2:str3
2 对HashMap进行循环遍历 程序代码<% HashMap countries=new HashMap(); countries.put("country1","中国"); countries.put("country2","美国"); countries.put("country3","英国"); countries.put("country4","法国"); countries.put("country5","德国"); pageContext.setAttribute("countries",countries); %> <logic:iterate id="country" name="countries"> <bean:write name="country" property="key"/>: <bean:write name="country" property="value"/> </logic:iterate> 在bean:write中通过property的key和value分别获得HaspMap对象的键和值。其显示结果为: country5:德国 country3:英国 country2:美国 country4:法国 country1:中国 由结果可看出,它并未按添加的顺序将其显示出来。这是因为HaspMap是无序存放的。
3、嵌套遍历 程序代码: <% String[] colors={"red","green","blue"}; String[] countries1={"中国","美国","法国"}; String[] persons={"乔丹","布什","克林顿"}; ArrayList list2=new ArrayList(); list2.add(colors); list2.add(countries1); list2.add(persons); pageContext.setAttribute("list2",list2); %> <logic:iterate id="first" name="list2" indexId="numberfirst"> <bean:write name="numberfirst"/> <logic:iterate id="second" name="first"> <bean:write name="second"/> </logic:iterate> <br> </logic:iterate>
|