getResultSet()
public void getResult(){ con=getCon(); Statement stmt;//獲取Statement try{ stmt=con.createStatement(); //範例化Statement物件 String sql="select*from tb_users"; //定義查詢SQL語句 stmt.executeQuery(sql); //執行查詢語句 ResultSet rs=stmt.getResultSet(); //獲取查詢結果集 System.out.println("資料庫中儲存的使用者姓名為:"); while(rs.next()){ //迴圈遍歷查詢結果集 System.out.println(rs.getString("name")); } }catch(SQLException e){ e.printStackTrace(); } }執行結果如下: