尝试使用JSP显示Mysql数据库的完整表

时间:2017-07-19 17:06:21

标签: jsp

我有一个名为“ jeet ”的数据库。 数据库“ jeet ”包含表格“ jeet ”。 我试图以表格形式显示完整的表格。 直到现在我尝试的是 -

<%@page import = "javax.servlet.*"%>
<%@page import="java.sql.*"%>

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%

    try{
        Class.forName("com.mysql.jdbc.Driver");
    }catch(Exception e){}

    try{

        Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/jeet","root","jeet");

        Statement stmt = con.createStatement();

        ResultSet rs = stmt.executeQuery("select * from jeet");

        while(rs.next()){%>

            <table>

                <tr>
                    <td>
                        <%
                            rs.getInt("id");
                        %>
                    </td>
                    <td>
                        <%
                            rs.getString("bname");
                        %>
                    </td>

                    <td>
                        <%
                            rs.getString("author");
                        %>
                    </td>

                    <td>
                        <%
                            rs.getInt("price");
                        %>
                    </td>
                </tr>

            </table>

        <%}


    }catch(Exception e){

    }

%>

</body>
</html>

当我在tomcat上运行此代码时,我得到了 http Status 404 。 对此的描述是请求的资源不可用。

完成任务的解决方案是什么?

1 个答案:

答案 0 :(得分:0)

首先将此代码替换为<% rs.getInt("id");%>
向此<%=rs.getInt("id");%>。并为此类其他字段执行此操作。