如何使用模型和scriptlet获取价值

时间:2015-10-19 09:23:10

标签: java jsp jsp-tags

我在JSP中创建一个表,我在其中使用硬编码显示一些值。 我想使用scriptlet和模型显示这些值。有人帮我怎么做?

<tr>
             <td>Automobile</td>
             <td>11-JUN-2015</td>
             <td>10-FEB-2016</td>
             <td>Cars and bikes</td>

            </tr>

1 个答案:

答案 0 :(得分:0)

从数据库中获取值:

<%rst=stmt.executeQuery("select * from auto_details");%>

示例Html表:

<html>
            <body>
            <center>
                <h2>AutoList</h2>
                <table border="1" cellspacing="0" cellpadding ="0">
                <tr>
                    <td><b>S.No</b></td>
                    <td><b>Date</b></td>
                    <td><b>typeofvichele</.b></td>
                </tr>
                    <%
                    int no=1;
                    while(rst.next()){
                    %>
                    <tr>
                      <td><%=no%></td>
                      <td><%=rst.getString("date")%></td>
                      <td> <%=rst.getString("typeofvichele")%> </td>
                    </tr>
                    <%
                    no++;
        }
        rst.close();
        stmt.close();
        con.close();
    %>
                </table>
                </center>
            </body>
        </html>