jsp 输出数据库时间日期问题
做留言板的留言的时间日期,已经把信息和时间都存到数据库了,但是把它显示出来,就是说和留言信息一同显示,显示文字还可以,但显示时间和日期,这一部不知道怎么做。这是我的代码,...
做留言板的留言的时间日期,已经把信息和时间都存到数据库了,但是把它显示出来,就是说和留言信息一同显示,显示文字还可以,但显示时间和日期,这一部不知道怎么做。这是我的代码,希望大家,能帮我找找问题。谢谢!
<%@ page contentType="text/html; charset=gbk" import="java.sql.*;"%>
<html>
<head><title>jdbc+mysql--显示留言信息后台</title></head>
<body>
<P>
<BR>
<font color="res" size="5">显示留言信息--后台
<P>
<BT>
<HR>
<%
request.setCharacterEncoding("GBK");
String driver="org.gjt.mm.mysql.Driver";
String url="jdbc:mysql://localhost/liaotiandb?user=root&password=123456";
String sql="select * from bookdb";
int id=0;
Connection conn=null;
PreparedStatement pstmt=null;
ResultSet rs=null;
String zuozhe=null;
String zhuti=null;
String books=null;
java.util.Date ud=new java.util.Date();
java.sql.Timestamp stp=new java.sql.Timestamp(ud.getTime());
%>
<table width="450" bgcolor="" border="1" cellpadding="0" cellspacing="0">
<tr>
<td>ID</td>
<td>主题</td>
<td>作者</td>
<td>内容</td>
<td>发布时间</td>
</tr>
<%
try{
Class.forName(driver);
conn=DriverManager.getConnection(url);
pstmt=conn.prepareStatement(sql);
//pstmt.executeUpdate();
//rs=pstmt.executeUpdate();
rs=pstmt.executeQuery();
while(rs.next()){
id=rs.getInt(1);
zuozhe=rs.getString(2);
zhuti=rs.getString(3);
books=rs.getString(4);
//id=rs.getInt(5);
//System.out.println(id);
%>
<tr>
<td><%= id%></td>
<td><%= zuozhe %></td>
<td><%= zhuti %></td>
<td><%= books %></td>
<td><%= stp %></td>
</tr>
<%
}
//rs.close();
pstmt.close();
conn.close();
}catch(Exception ex){
out.println(ex);
}
%>
</table>
</font>
</body>
</html> 展开
<%@ page contentType="text/html; charset=gbk" import="java.sql.*;"%>
<html>
<head><title>jdbc+mysql--显示留言信息后台</title></head>
<body>
<P>
<BR>
<font color="res" size="5">显示留言信息--后台
<P>
<BT>
<HR>
<%
request.setCharacterEncoding("GBK");
String driver="org.gjt.mm.mysql.Driver";
String url="jdbc:mysql://localhost/liaotiandb?user=root&password=123456";
String sql="select * from bookdb";
int id=0;
Connection conn=null;
PreparedStatement pstmt=null;
ResultSet rs=null;
String zuozhe=null;
String zhuti=null;
String books=null;
java.util.Date ud=new java.util.Date();
java.sql.Timestamp stp=new java.sql.Timestamp(ud.getTime());
%>
<table width="450" bgcolor="" border="1" cellpadding="0" cellspacing="0">
<tr>
<td>ID</td>
<td>主题</td>
<td>作者</td>
<td>内容</td>
<td>发布时间</td>
</tr>
<%
try{
Class.forName(driver);
conn=DriverManager.getConnection(url);
pstmt=conn.prepareStatement(sql);
//pstmt.executeUpdate();
//rs=pstmt.executeUpdate();
rs=pstmt.executeQuery();
while(rs.next()){
id=rs.getInt(1);
zuozhe=rs.getString(2);
zhuti=rs.getString(3);
books=rs.getString(4);
//id=rs.getInt(5);
//System.out.println(id);
%>
<tr>
<td><%= id%></td>
<td><%= zuozhe %></td>
<td><%= zhuti %></td>
<td><%= books %></td>
<td><%= stp %></td>
</tr>
<%
}
//rs.close();
pstmt.close();
conn.close();
}catch(Exception ex){
out.println(ex);
}
%>
</table>
</font>
</body>
</html> 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询