JSP 是一種網(wǎng)頁開發(fā)語言,可以與 MySQL 數(shù)據(jù)庫交互。當(dāng)需要在數(shù)據(jù)庫中保存指定日期時,可以使用 JSP 語言編寫相應(yīng)的代碼實現(xiàn)。
<%!
// 導(dǎo)入 MySQL 驅(qū)動包
Class.forName("com.mysql.jdbc.Driver");
// 連接數(shù)據(jù)庫
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/mydb", "username", "password");
%>
<%
// 獲取日期參數(shù)
String date = request.getParameter("date");
// 生成 SQL 語句
String sql = "INSERT INTO mytable (id, date) VALUES (NULL, '" + date + "')";
// 創(chuàng)建 Statement 對象
Statement stmt = con.createStatement();
// 執(zhí)行 SQL 語句
stmt.executeUpdate(sql);
%>
<%
// 關(guān)閉連接
stmt.close();
con.close();
%>
代碼中,通過導(dǎo)入 MySQL 驅(qū)動包來連接數(shù)據(jù)庫。生成 SQL 語句并創(chuàng)建 Statement 對象,然后通過 executeUpdate() 方法執(zhí)行 SQL 語句完成數(shù)據(jù)保存。最后,需要關(guān)閉連接。