weixin_52310393 2022-04-24 15:34 采纳率: 90%
浏览 28
已结题

java关闭resultset,connection,preparedstatement出错


    public List<Product>  searchAll(){
        List<Product> ps = new ArrayList<Product>();
        Connection conn = null;
        PreparedStatement pstmt = null;
        ResultSet rs = null;
        
        try{
            String url = "jfdbc:mysql://localhost:3306/bookstoredb";
            conn = DriverManager.getConnection(url,"root","0609chenwanyi");
            
            String sql = "select * from bookstoredb.product";
            pstmt = conn.prepareStatement(sql);
            rs = pstmt.executeQuery();
            
                while (rs.next()) {
                Product p = new Product();
                p.setId(rs.getString(1));
                p.setName(rs.getString(2));
                p.setPrice(rs.getDouble(3));
                p.setCategory(rs.getString(4));
                p.setPnum(rs.getInt(5));
                p.setImgurl(rs.getString(6));
                p.setDescription(rs.getString(7));
                ps.add(p);
                }
        }catch(Exception e) {e.printStackTrace();}
        finally {
        }
        if (rs != null)
            rs.close();
        if (pstmt != null)
            pstmt.close();
        if (conn != null)
            conn.close();
        return ps;
    }

img

  • 写回答

2条回答 默认 最新

  • hellotutu 2022-04-27 10:19
    关注

    代码改动:

        try{
            String url = "jfdbc:mysql://localhost:3306/bookstoredb";
            conn = DriverManager.getConnection(url,"root","0609chenwanyi");
            
            String sql = "select * from bookstoredb.product";
            pstmt = conn.prepareStatement(sql);
            rs = pstmt.executeQuery();
            
                while (rs.next()) {
                Product p = new Product();
                p.setId(rs.getString(1));
                p.setName(rs.getString(2));
                p.setPrice(rs.getDouble(3));
                p.setCategory(rs.getString(4));
                p.setPnum(rs.getInt(5));
                p.setImgurl(rs.getString(6));
                p.setDescription(rs.getString(7));
                ps.add(p);
                }
        }catch(Exception e) {e.printStackTrace();}
        finally {
          try {
            if (rs != null)
            rs.close();
        if (pstmt != null)
            pstmt.close();
        if (conn != null)
            conn.close();
              } catch(Exception e) {
            e.printStackTrace();
          }
        }
        
        return ps;
    }
    

    需捕获异常,再有错误,贴出来。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 7月22日
  • 已采纳回答 7月14日
  • 创建了问题 4月24日

悬赏问题

  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误