< logic:iterate >是Logic Struts標簽庫中最復雜的標簽,也是用途最廣的一個標簽,它能夠 在一個循環中遍歷數組、Collection、Enumeration、Iterator 或 Map 中的所有元素。
1. 遍歷集合
的 name 屬性指定需要進行遍歷的集合對象, 它每次從集合中檢索出一個元素, 然後把它放在page 范 圍內, 並以id 屬性指定的字符串來命名這個元素, 例如:
< % Vector animals = new Vector();
animals.addElement("Dog");
animals.addElement("Cat");
animals.addElement("Bird");
animals.addElement("Chick");
request.setAttribute("Animals", animals);
%>
以上代碼先定義了一個Vector 類型的集合變量 Animals, 它存放在request 范圍內. 接下來 標簽在 一個循環中遍歷Animals 集合(這個集合名就是在標簽中的name 屬性的值)中所有元素, 每次檢索到一個 元素, 就把它命名為"element"(標簽id 屬性的值), 並存放在page 范圍內.
在 中, 還嵌套了一個< ?xml:namespace prefix = bean / >< bean:write> 標簽, 它用 於輸出每個元素的內容. 以上代碼的輸出內容如下:
Dog
Cat
Bird
Chick
length 屬性指定需要遍歷的元素的數目, 如果沒有設置length 屬性, 就遍歷集合中的所有元素.
offset 屬性指定開始遍歷的起始位置, 默認值為 "0" , 表示從集合的第一個元素開始遍歷.
indexId 屬性定義一個代表當前遍歷元素序號的變量, 這個變量被存放在 page 范圍內, 可以被標簽 主體的標簽訪問.
例如:
id="element" // 指定輸出元素的名 與 中name 屬性一致
indexId="index" // 遍歷元素序號的變量, 這個變量放在page 范圍內
name="Animals" // request 中的集合名, 從中取循環取出元素
offset="1" // 從集合的第 2 條記錄開始取數
length="2"> // 取出 2 個元素
. // 序號
< bean:write name="element" property="key">: // 鍵名
< bean:write name="element" property="value"> // 鍵值
2. 遍歷Map
標簽還可以遍歷HashMap 中的元素, 例如:
< logic:iterate id=element name="months" indexId="ind" >
< bean:write name="ind">
以上代碼先定義一個名為"months" 的HashMap, 存放在request 范圍內. 接下來在 標簽遍歷months 對象的每一個元素, 每一個元素包含一對 key/value . 在 標簽主體中包含三個 標簽, 分別輸出每個元 素的序號、key 和 value. 以上代碼的輸出內容如下:
0.Mar: March
1.Feb: February
2.Jan: January
如果HashMap 中的每個元素的 value 是集合對象, 則可以采用嵌套的標簽遍歷集合中的所有對象, 例 如:
中的name 屬性對應, 輸出內容
indexId="ind" // 與 中的name 屬性對應, 輸出序號
name="catelog"> // 指定輸出元素的名稱
. // 輸出序號
中id 屬性對應
property="key"/> // 集合中的鍵名
id="elementValue" // 與 中的name 屬性對應
name="element" // 指定輸出元素的名稱
property="value" // 集合中的鍵值
length="3" // 取3 個元素
offset="1"> // 從第 2 個位置取
以上代碼先定義一個名為"catelog" 的HashMap , 存放在request 范圍內, 它的每個元素的value 為 字符串數組.
接下來外層的標簽遍歷HashMap 中的所有元素, 內層的標簽訪問每個元素的value 屬性, 遍歷value 屬性引用的字符串數組中的所有元素.
3. 設置被遍歷的變量
可以通過以下方式來設置需要遍歷的變量
(1) 設置name 屬性, name 屬性指定需要遍歷的集合或Map, 例如:
< logic:iterate id=element name="Animals" >
< bean:write name="element">< /bean:write>
< / logic:iterate >
(2) 設置name 屬性和property 屬性, name 屬性指定一個JavaBean, property 屬性指定JavaBean 的 一個屬性, 這個屬性為需要遍歷的集合或Map, 例如:
< logic:iterate id=element name="catelog" indexId="ind">
< bean:write name="ind">< /bean:write>
< bean:write name="element" property="key">< /bean:write>
< logic:iterate id=elementValue name="element" property="value" offset="1" length="3" >
--------
(3) 設置collection 屬性, collection 屬性指定一個運行時表達式, 表達式的運算結果為需要遍歷 的集合或Map, 例如:
< logic:iterate id=header collection?< % ="request.getHeaderNames ()%">">
4. 讀取JavaBean 中的數據
(1) 在Jsp 頁面中加入JavaBean 如:
< ? xml:namespace prefix = jsp />< jsp:useBean id=articleClasses class=com.GetArticleClasses>
< / jsp:useBean>
上面這個JavaBean 要求必須存在一個集合數組對象,如Vector,Collection,ArrayList 等;在這個 JavaBean 的構造函數中,取得數據庫中的數據,並將其存入數組對象中。
(2) 使用 標簽,取出JavaBean 中存放的數組對象中的數據
id="aClasses" // id : 給檢索出的元素所命的名.
name="articleClasses" // name : JavaBean 在頁面中所設置的引用ID.
property="coll"> // coll : JavaBean 中的集合數組屬性名稱.
< ?xml:namespace prefix = html />< html:link
paramId="classId"
paramName="aClasses"
paramProperty="classId">
< bean:write name="aClasses" 與< logic:iterate>標簽中的id 屬性相對應
property="className" /> // 取出JavaBean中, 存放在集合對象中的,對象的className 屬性值
(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;
}
}
}