1. 程式人生 > >struts標籤 logic:iterate(轉)非常詳細的使用

struts標籤 logic:iterate(轉)非常詳細的使用

1. 遍歷集合
<logic:iterate> 的 name 屬性指定需要進行遍歷的集合物件, 它每次從集合中檢索出一個元素, 然後把它放在page 範圍內, 並以id 屬性指定的字串來命名這個元素, 例如:

<%
Vector animals = new Vector();
animals.addElement("Dog");
animals.addElement("Cat");
animals.addElement("Bird");
animals.addElement("Chick");
request.setAttribute("Animals", animals); //加入到request中

%>
<logic:iterate id="element" name="Animals">
<bean:write name="element"/><br>
</logic:iterate>
以上程式碼先定義了一個Vector 型別的集合變數 Animals, 它存放在request 範圍內. 接下來<logic:iterate> 標籤在一個迴圈中遍歷Animals 集合(這個集合名就是在標籤中的name 屬性的值)中所有元素, 每次檢索到一個元素, 就把它命名為"element"(標籤id 屬性的值), 並存放在page 範圍內.
在<logic:iterate> 中, 還嵌套了一個<bean:write>標籤, 它用於輸出每個元素的內容. 以上程式碼的輸出內容如下:
Dog
Cat
Bird
Chick

length 屬性指定需要遍歷的元素的數目, 如果沒有設定length 屬性, 就遍歷集合中的所有元素.
offset 屬性指定開始遍歷的起始位置, 預設值為 "0" , 表示從集合的第一個元素開始遍歷.
indexId 屬性定義一個代表當前遍歷元素序號的變數, 這個變數被存放在 page 範圍內, 可以被標籤主體的
<bean:write> 標籤訪問. 例如:
<logic:iterate
id="element" // 指定輸出元素的名 與 <bean:write> 中name 屬性一致
indexId="index" // 遍歷元素序號的變數, 這個變數放在page 範圍內
name="Animals" // request 中的集合名, 從中取迴圈取出元素
offset="1" // 從集合的第 2 條記錄開始取數
length="2"> // 取出 2 個元素
<bean:write name="index"/>. // 輸出每個元素的序號, 與indexId 的屬性一致
<bean:write name="element"/><br> // 輸出每個元素的內容, 與id 的屬性一致
</logic:iterate>
2. 遍歷Map
<logic:iterate> 標籤還可以遍歷HashMap 中的元素, 例如:
<%
HashMap months = new HashMap();

months.put("Jan","January");
months.put("Feb","February");
months.put("Mar","March");

request.setAttribute("month", months);
%>
<logic:iterate id="element" indexId="ind" name="months">
<bean:write name="ind"/>. // 序號
<bean:write name="element" property="key"/>: // 鍵名
<bean:write name="element" property="value"/> // 鍵值
</logic:iterate>
以上程式碼先定義一個名為"months" 的HashMap, 存放在request 範圍內. 接下來在<logic:iterate> 標籤遍歷months 物件的每一個元素, 每一個元素包含一對 key/value . 在<logic:iterate> 標籤主體中包含三個<bean:write> 標籤, 分別輸出每個元素的序號、key 和 value. 以上程式碼的輸出內容如下:
0.Mar: March
1.Feb: February
2.Jan: January
如果HashMap 中的每個元素的 value 是集合物件, 則可以採用巢狀的<logic:iterate>標籤遍歷集合中的所有物件, 例如:
<%
HashMap h = new HashMap();
String vegetables[] = {"pepper","cucumber"};
String fruits[] = {"apple","orange","banana","cherry","watermelon"};
String flowers[] = {"chrysanthemum","rose"};
String trees[] = {"willow"};

h.put("Vegetables", vegetables);
h.put("Fruits",fruits);
h.put("Flowers",flowers);
h.put("Trees",trees);

request.setAttribute("catalog",h);
%>
<logic:iterate id="element" // 與<bean:write> 中的name 屬性對應, 輸出內容
indexId="ind" // 與<bean:write> 中的name 屬性對應, 輸出序號
name="catelog"> // 指定輸出元素的名稱
<bean:write name="ind"/>. // 輸出序號
<bean:write name="element" // 與<logic:iterate>中id 屬性對應
property="key"/> // 集合中的鍵名
<logic:iterate
id="elementValue" // 與<bean:write> 中的name 屬性對應
name="element" // 指定輸出元素的名稱
property="value" // 集合中的鍵值
length="3" // 取3 個元素
offset="1"> // 從第 2 個位置取
-------<bean:write name="elementValue"/>
</logic:iterate>
</logic:iterate>

以上程式碼先定義一個名為"catelog" 的HashMap , 存放在request 範圍內, 它的每個元素的value 為字串陣列.
接下來外層的<logic:iterate>標籤遍歷HashMap 中的所有元素, 內層的<logic:iterate>標籤訪問每個元素的value 屬性, 遍歷value 屬性引用的字串陣列中的所有元素.
3. 設定被遍歷的變數
可以通過以下方式來設定需要遍歷的變數
(1) 設定name 屬性, name 屬性指定需要遍歷的集合或Map, 例如:
<logic:iterate id="element" name="Animals">
<bean:write name="element"/>
</logic:iterate>
(2) 設定name 屬性和property 屬性, name 屬性指定一個JavaBean, property 屬性指定JavaBean 的一個屬性, 這個屬性為需要遍歷的集合或Map, 例如:
<logic:iterate id="element" indexId="ind" name="catelog">
<bean:write name="ind"/>
<bean:write name="element" property="key"/>
<logic:iterate id="elementValue" name="element" property="value" length="3" offset="1">
--------<bean:write name="elementValue"/>
</logic:iterate>
</logic:iterate>
(3) 設定collection 屬性, collection 屬性指定一個執行時表示式, 表示式的運算結果為需要遍歷的集合或Map, 例如:

<logic:iterate id="header" collection"<%=request.getHeaderNames()%>">
<bean:write name="header"/>
</logic:iterate>
4. 讀取JavaBean 中的資料
(1) 在Jsp 頁面中加入JavaBean 如:
<jsp:useBean id="articleClasses" class="com.GetArticleClasses"/>
上面這個JavaBean 要求必須存在一個集合陣列物件,如Vector,Collection,ArrayList 等;在這個JavaBean 的建構函式中,取得資料
庫中的資料,並將其存入陣列物件中。
(2) 使用<logic:iterate> 標籤,取出JavaBean 中存放的陣列物件中的資料
<logic:iterate
id="aClasses" // id : 給檢索出的元素所命的名.
name="articleClasses" // name : JavaBean 在頁面中所設定的引用ID.
property="coll"> // coll : JavaBean 中的集合陣列屬性名稱.
<tr>
<td onMouseOver="this.bgColor='#FFFFFF'" onMouseOut="this.bgColor=''">
<html:link page="/articleListAction.do"
paramId="classId"
paramName="aClasses"
paramProperty="classId">
<bean:write name="aClasses" // 與<logic:iterate> 標籤中的id 屬性相對應
property="className" /> // 取出JavaBean中, 存放在集合物件中的,物件的className 屬性值
</html:link>
</td>
</tr>
</logic:iterate>
(3) 在JavaBean 中的集合物件中存放實體物件的語句如下:
......
public class GetArticleClasses
{
// 資料集合
private Collection coll;

// 返回資料集合
public Collection getColl()
{
return coll;
}
// 建構函式, 取出資料,存入集合中
public GetArticleClasses()
{
coll = new ArrayList();
try{
// 資料庫連線
Connection connection = DBConnection.getConnection();
if(connection != null)
{
Statement statement = connection.createStatement();
ResultSet resultset;
ArticleClass articleclass;
resultset = statement.executeQuery("SELECT * FROM table ORDER BY id");
while( resultset.next())
{
articleclass = new ArticleClass();
articleclass.setId(resultset.getInt("id"));
articleclass.setClassId(resultset.getString("class"));
articleclass.setClassName(resultset.getString("name"));

coll.add(articleclass))
}
resultset.close();
connection.close();
} else {
coll = null;
}
} catch(Exception exception) {
coll = null;
}
}
}