快速业务通道

提交多行数据到Struts的ActionForm的List属性中 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-18
count Name:"+account.getName()+      " Number:"+account.getNumber()); List stocks = asForm.getStocks(); for (int i=0; i<stocks.size() ;i++) {    Stock stock = (Stock)stocks.get(i);    System.out.println("Stock["+i+"]Code:"+stock.getCode()+        " Name:"+stock.getName()+        " Price:"+stock.getPrice()+        " Quantity:"+stock.getQuantity()); } return mapping.findForward("show");      AccountStockForm asForm = (AccountStockForm)form;      Account account = asForm.getAccount();      System.out.println("Account Name:"+account.getName()+          " Number:"+account.getNumber());      List stocks = asForm.getStocks();      for (int i=0; i<stocks.size() ;i++)      {        Stock stock = (Stock)stocks.get(i);        System.out.println("Stock["+i+"]Code:"+stock.getCode()+            " Name:"+stock.getName()+            " Price:"+stock.getPrice()+            " Quantity:"+stock.getQuantity());      }      return mapping.findForward("show");

在Action中就能直接取用提交来的数据了,不需要 getParameterValues()了.

六: 最后一步, 对于这样的 ActionForm 我们应该如何显示出来呢,我们用了 nested 标签 (show.jsp)

<html:form action="/showStock">    <h3>修改持有的股票<br></h3>    <fieldset><legend>基本信息</legend>    <table width="100%" border=0><tr>    <nested:nest property="account">      <td>帐户名:<nested:text property="name" readonly="true"/></td>      <td>资金帐号:<nested:text property="number" readonly="true"/></td>    </nested:nest>    </tr></table>    </fieldset>    <br>    <fieldset><legend>持有股票</legend>    <table width=100% border=0 id="stockTable">    <tr>      <td><input type="checkbox" onclick="checkAll(this)"></td>      <td>股票代码</td>      <td>股票名称</td>      <td>成本价</td>      <td>股票数量</td>    </tr>    <nested:iterate id="stock" property="stocks">    <tr>      <td><input type="checkbox" name="check"></td>      <td><nested:text property="code" size="15"/></td>      <td><nested:text property="name" size="15"/></td>      <td><nested:text property="price" size="15"/></td>      <td><nested:text property="quantity" size="15"/></td>    </tr>    </

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号