JSP中的数据库操作(3):JSP页面中的数据库插入(2)
来源:未知 责任编辑:责任编辑 发表时间:2015-01-01 13:16 点击:次
while(rs.next()){%>
<tr>
<td width="174" ><%=rs.getString("title") %></td>
<td width="449" ><%=rs.getString("content") %></td>
<td width="161"><%=rs.getString("time") %></td>
</tr>
<%} %>
</table>
<%
//通过input中的name获取输入的内容。time那一行是获得时间及定义时间格式
String getTitle=request.getParameter("title");
String getContent=request.getParameter("content");
java.text.SimpleDateFormat time = new java.text.SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");
String insertSQL = "INSERT INTO data(title, content, time) Values ('"+getTitle+"', '"+getContent+"', ' "+time.format(new java.util.Date())+"')";
st.executeUpdate(insertSQL);
%>
<%
rs.close();
st.close();
conn.close();
%>
</body>
</html>
作者:shirenfeigui
相关新闻>>
- 发表评论
-
- 最新评论 更多>>