2023.2.24周四每日总结
成功实现了数据库内容的网页输出,相关代码如下
jsp中的部分
<%
Connection connection= util.getConnection();
PreparedStatement preparedStatement=null;
ResultSet in=null;
try{
// 按照添加时间排序::
preparedStatement=connection.prepareStatement("select * from websites");
in = preparedStatement.executeQuery();
while(in.next()){
{
%>
<tr>
<td><%=in.getString(1)%></td>
<td><%=in.getString(2)%></td>
<td><%=in.getString(3)%></td>
</tr>
<%
}
}
}catch (SQLException e) {
throw new RuntimeException(e);
}finally {
connection.close();
preparedStatement.close();
in.close();
}
%>
本代码配合dbutil能成功做到将数据库表中内容输出

浙公网安备 33010602011771号