如何从jsp中获取arrayList中的数据

时间:2013-11-25 06:45:36

标签: struts2

这是我在jsp中的表单

<form action="submit">
  <tr class="row" id="item1">
  <td><input type="text" name="type" class="type"  style="width: 50px"/></td>
  <td><input type="text" name="color" class="color" style="width: 50px"/></td>
  <td><input type="text" name="qty" class="qty" style="width: 50px"/></td>
  <td><input type="text" name="unitprice"   class="unitPrice" style="width: 50px"/></td>
 </tr>

...
 <tr class="row" id="itemN">
  <td><input type="text" name="type" class="type"  style="width: 50px"/></td>
  <td><input type="text" name="color" class="color" style="width: 50px"/></td>
  <td><input type="text" name="qty" class="qty" style="width: 50px"/></td>
  <td><input type="text" name="unitprice"   class="unitPrice" style="width: 50px"/></td>
 </tr>

</form>

我想获取可能包含1到N个项目的数据,每个项目包含type color qtyunitprice。我想将所有这些数据存储在ArrayList变量中。 怎么做?

1 个答案:

答案 0 :(得分:1)

您需要的是Tabular Input