2017-08-08 93 views

回答

1

嗯這是一個非常愚蠢的問題,但既然你問了,所以我在這裏寫答案。

您可以使用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和結果將在瀏覽器上顯示出來。

相關問題