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日

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改