输入banner图图片脚本导航/分类

mysql-编写JSP页面查询数据库不显示查询的结果

mysqljsp

<%try{    Class.forName("com.mysql.jdbc.Driver");    Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/test2",            "root","xiaojuan00");    Statement stat=conn.createStatement();    ResultSet rs=stat.executeQuery("select * from user");    while(rs.next()){        System.out.print(rs.getString("name")+" ");        System.out.println(rs.getString("password"));    }    rs.close();    stat.close();    conn.close();}catch(Exception e){    e.printStackTrace();}%>