没有在arraylist中显示所有值

时间:2013-11-27 00:05:38

标签: java mysql jsp arraylist

我试图在使用arraylist的jsp页面中显示一些值,但它显示除了顶行值之外的所有值。这是我写的代码。

    <table border="1">
    <tr>
    <th>Book ID</th>
    <th>Branch ID</th>
    <th>Card No.</th>
    <th>Date Out</th>
    <th>Due Date</th>
    </tr>

    <%
    LibModel lm=(LibModel)request.getAttribute("data");
    for(int a=0;a<lm.branch_id.size();a++) {
    %>
    <tr>
    <td><%= lm.book_ids.get(a)%></td>
    <td><%= lm.branch_id.get(a)%></td>
    <td><%= lm.cards.get(a)%></td>
    <td><%= lm.date_out.get(a)%></td>
    <td><%= lm.due_date.get(a)%></td>

  </tr>
<% }%>
 </table>

我正在提供输入

book id = 721 卡号= 900

我的查询支持子字符串匹配。

它应该显示

图书编号分行身份证无日期截止日期

72127317 1 9009 2013-11-25 2013-12-09

72127317 3 9009 2013-11-25 2013-12-09

但它的显示只是

图书编号分行身份证无日期截止日期

72127317 3 9009 2013-11-25 2013-12-09

0 个答案:

没有答案