-4
如何使用Servlet從數據庫中顯示HTML頁面中的數據?如何使用Servlet從數據庫中顯示HTML頁面中的數據?
如何使用Servlet從數據庫中顯示HTML頁面中的數據?如何使用Servlet從數據庫中顯示HTML頁面中的數據?
嗯這是一個非常愚蠢的問題,但既然你問了,所以我在這裏寫答案。
您可以使用JDBC從數據庫中獲取數據,然後使用響應printwriter來顯示它。
示例程序
Connection con;
PrintWriter out = response.getWriter();
response.setContentType("text/html");
con = DriverManager.getConnection("jdbc:mysql://localhost:" + "3306" + "/" + "pinnnacledb1", "root", "");
String query = "Select * from table where something = ?";
PreparedStatement pst = currentCon.prepareStatement(query);
pst.setString(1, username);
ResultSet rs = pst.executeQuery();
while (rs.next())
{
//Your logic for display
out.println(<html>Whole html logic can be written here</html>);
}
所以,現在運行的servlet和結果將在瀏覽器上顯示出來。
只是谷歌一次,你會得到噸的例子使用和修改根據它。 –