我是一名 Java 新手/爱好者程序员,我正在编写一些代码来帮助我将记录添加到、搜索和更新我广泛的电影收藏数据库。我已经编写了使用 JSP 添加和搜索记录的代码,并且运行良好。但是,我遇到了更新记录的代码问题。我在我的 JSP 中收到以下错误,这似乎是在引用response.sendRedirect()
我使用的方法:
org.apache.jasper.JasperException:在第 63 行处理 JSP 页面 /updateRecord.jsp 时发生异常
63: response.sendRedirect("updaterecordsuccess.html");
问题是我在另一个 JSP 中使用了基本相同的代码,除了一个 sql 更新字符串,它工作正常。给出错误的 JSP 页面的完整代码如下。该response.sendRedirect
方法在代码的最后一行。我想我已经检查了所有内容,但无法弄清楚。
<%@ page contentType="text/html; charset=UTF-8" language="java" import="java.sql.*" import="java.text.ParseException" import="java.text.SimpleDateFormat" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%
Connection conn = null;
Class.forName("com.mysql.jdbc.Driver").newInstance();
conn = DriverManager.getConnection("jdbc:mysql://localhost/VideoDB? user=user&password=password");
PreparedStatement psUpdateRecord=null;
String sqlUpdateRecord=null;
String title=request.getParameter("title");
String sDateVwd=request.getParameter("sDateVwd");
int rating=Integer.parseInt(request.getParameter("rating"));
String comments=request.getParameter("comments");
try {
java.util.Date utilDateVwd = new SimpleDateFormat("dd MMM yyyy").parse(sDateVwd);
java.sql.Date sqlDateVwd = new java.sql.Date(utilDateVwd.getTime());
try {
sqlUpdateRecord="UPDATE vidtb SET date_vwd = ?, rating = ?, comments = ? WHERE title = ?";
psUpdateRecord=conn.prepareStatement(sqlUpdateRecord);
psUpdateRecord.setDate(1,sqlDateVwd);
psUpdateRecord.setInt(2,rating);
psUpdateRecord.setString(3,comments);
psUpdateRecord.setString(4,title);
psUpdateRecord.executeUpdate();
} finally {
}
}
catch (ParseException e) {
e.printStackTrace();
}
catch(Exception e)
{
response.sendRedirect("rateRecord.jsp");//// On error it will send back to rateRecord.jsp page
}
try{
if(psUpdateRecord!=null)
{
psUpdateRecord.close();
}
if(conn!=null)
{
conn.close();
}
}
catch(Exception e)
{
e.printStackTrace();
}
response.sendRedirect("updaterecordsuccess.html");
%>