大家好,我想在HTML表中显示ResultSet中的数据。这是我的代码
while(result.next()){
writer.println("<table BORDER=1 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>"
+ "<tr><th>FIRSTNAME</th><th>LASTNAME</th></tr>"
+ "<tr><td><center>"+result.getString("firstname")+"</center></td>"
+ "<td><center>"+result.getString("lastname")+"</center></td></tr> </table>");
}
但是它对多行效果很好。.所以有帮助吗?
将最后一行放在循环之外
这样的事情怎么样?
将ResultSet对象转换为HTML内容的步骤