jsp打印表中日期
我数据库中表里一个字段是日期,在jsp页面中打印出来该写什么?
<%=rs.getString(2)%>
这里的rs.后面应该带什么?
[解决办法]
[解决办法]
[解决办法]
SimpleDateFormat simpledateformat = new SimpleDateFormat("yyyy-MM-dd");
ParsePosition parseposition = new ParsePosition(0);
Date date = simpledateformat.parse(s, parseposition);
[解决办法]
<td> <%=rs.getString("date")%> </td>
如果查出来的结果为第二列,也可以用<td> <%=rs.getString(2)%> </td>
[解决办法]
格式化一下
SimpleDateFormat simpledateformat = new SimpleDateFormat("yyyy-MM-dd");
simpledateformat.formact(rs.getString(2));