下面代码是使用 jdbc 执行查询操作,请填写空缺语句: static void template() throws ClassNotFoundException, SQLException{ Connection conn= null ; Statement st= null ; ResultSet rs= null ; String url= "jdbc:mysql://localhost:3306/jdbc" ; String user= "root" ; String password= "root" ; try { // 注册驱动 Class. forName ( "com.mysql.jdbc.Driver" ); // 建立连接 conn=DriverManager. getConnection (url,user,password); // 创建 Statement 实现类的实例 st= ; // 发送 sql 语句 String sql=”select * from user”; ; // 处理结果 while (rs.next()){ System. out .println(rs.getObject(1)+ "\t" +rs.getObject(2)+ "\t" +rs.getObject(3)+ "\t" +rs.getObject(4)); } } finally { // 释放资源 try { if (rs!= null ) ; } finally { try { if (st!= null ) ; } finally { if (conn!= null ) ; } } } }