数据库try-catch块代码未执行

时间:2019-03-08 11:12:37

标签: java mysql exception try-catch

我想通过try-catch方法连接到MySQL数据库。但是我的eclipse控制台继续显示catch块中的“ GOT AN ERROR”。请帮助我解决此问题,因为我是Java和异常处理的新手。以下是我的代码。

public class MyServlet extends HttpServlet{  

    private static final long serialVersionUID = 1L;        
     protected  void doPost(HttpServletRequest request,
                HttpServletResponse response) throws ServletException, IOException {
        String task;
        String tm;

         task = request.getParameter("task");
         tm= request.getParameter("reminder_time");
        // System.out.println("task = "+task+"time ="+tm);
         try {
             SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS");
                Date parsedDate = dateFormat.parse(tm);
                java.sql.Timestamp timestamp = new java.sql.Timestamp(parsedDate.getTime());
            //System.out.println("Time=");
            Connection con =DriverManager.getConnection(  
            "jdbc:mysql://localhost:3306/reminder","xyz","xyz123");  
             String INSERT_RECORD = "insert into ToDo values(?, ?)";
                    PreparedStatement pstmt = null;
                      pstmt.close();
                      pstmt = con.prepareStatement(INSERT_RECORD);
                      pstmt.close();
                      pstmt.setString(1, task);
                      pstmt.close();
                      //pstmt.setDate(2, timestamp);
                      pstmt.close();
                      int rs= pstmt.executeUpdate();

            if(rs!=0){

//              response.sendRedirect("success.html");
//              return;
                PrintWriter out= response.getWriter();
                out.println("Successfull");     
                pstmt.close();
                con.close();

            }
            else{
            //  response.sendRedirect("error.html");
                PrintWriter out= response.getWriter();
                out.println("Failed");
            }

        } 
         catch (Exception e) {
            System.out.println("Got an ERROR");
        }
     }
}  

谢谢。

1 个答案:

答案 0 :(得分:0)

要找出调用catch子句的数据库访问失败,请尝试如下代码。

catch (SqlException e) {
    System.out.println("database exception");
    System.out.println(e); 
    e.printStackTrace(); 
}
catch (Exception e)
    System.out.println("unexpected exception");
    System.out.println(e); 
    e.printStackTrace(); 
    throw;
}

您需要生成异常的行号,然后printStackTrace()向您显示。或者,在Eclipse的调试器中,在异常处理程序中设置一个断点并检查异常。

您的代码显示以下内容:

            PreparedStatement pstmt = null;
            pstmt.close();

第二行会产生异常,因为没有对象就无法调用方法。

专业提示:在现实世界中的许多情况下,无法完成连接与无法完成INSERT查询或某些其他查询有很大的不同。连接问题通常意味着数据库服务器已关闭或您的网络无法正常工作。查询问题通常意味着您的程序或数据库逻辑中存在某种问题。您可能选择使用两个try / catch块,一个用于连接,另一个用于查询。

专业提示:始终缩进代码以正确显示嵌套。 Eclipse(和大多数IDE)为您做到这一点。