2011-03-28 51 views

回答

1

這是我經常使用的方法,包括:

public class anAction { 
    private list displayList<RowBean>; 

    ... the setter/getter for displayList and get the rows from JDBC resultset into the displayList somewhere in the code... 
} 

的RowBean是對應於結果集的一排一個JavaBean。

使用下面的代碼段提取jsp頁面上的內容:在ATTRIBUTE1 ... attributeN是一樣的,在RowBean定義的屬性

<s:iterator value="displayList"> 
<tr> 
<td>attribute1</td><td>attribute2</td>...<td>attributeN</td> 
</tr> 
</s:iterator> 

希望這會有所幫助。