<%@ page language="java" import="java.util." pageEncoding="UTF-8"%> <%@ page import="java.sql." %> <html> <head> <title>学生信息</title> </head> <body> <table border="1"> <tr> <th>学生编号</th> <th>姓名</th> <th>性别</th> <th>年龄</th> <th>专业</th> </tr> <% try{ //加载数据库驱动 Class.forName("com.mysql.jdbc.Driver"); //建立数据库连接 String url="jdbc:mysql://localhost:3306/student_information"; Connection conn=DriverManager.getConnection(url,"root","root"); //查询数据库中的所有学生信息 String sql="select * from students"; PreparedStatement ps=conn.prepareStatement(sql); ResultSet rs=ps.executeQuery(); //遍历结果集,显示学生信息 while(rs.next()){ int id=rs.getInt("id"); String name=rs.getString("name"); String gender=rs.getString("gender"); int age=rs.getInt("age"); String major=rs.getString("major"); %> <tr> <td><%=id%></td> <td><%=name%></td> <td><%=gender%></td> <td><%=age%></td> <td><%=major%></td> </tr> <% } //关闭连接 rs.close(); ps.close(); conn.close(); }catch(Exception e){ e.printStackTrace(); } %> </table> </body> </
时间: 2024-01-08 14:02:29 浏览: 85
这段代码是一个 JSP 页面,用于查询并显示数据库中的学生信息。它通过 JDBC 访问 MySQL 数据库,执行一个 select 语句来获取所有的学生信息,并将查询结果在 HTML table 标签中进行展示。其中,<% %> 标签内的代码是 Java 代码,它可以访问 JSP 页面中的变量和函数。在这里,它使用了 PreparedStatement 对象执行 SQL 查询,并使用 ResultSet 对象遍历查询结果。最后,它关闭了连接、结果集和语句对象,以释放资源。
相关问题
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page import="java.util.*, java.sql.*"%> <%@ page import="com.util.SQLConn"%> <%@page import="java.net.HttpURLConnection"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert Data</title> </head> <body> <%-- 获取前端数据 --%> <% String username = request.getParameter("username"); String usernum = request.getParameter("usernum"); String stime = request.getParameter("stime"); String people = request.getParameter("people"); %> <%-- 定义SQLConn类和INSERT_SQL常量 --%> <% Connection conn = SQLConn.openDB(); //创建Statement , 执行 SQL 查询 Statement sm=ct.createStatement(); //查询用户名登陆状态 String sql; sql ="select Login from User_ZC where UserId='"+usernum+"' and Login='"+1+"' "; // 执行查询 ResultSet rs = sm.executeQuery(sql); if(rs.next()) { //用户在登陆状态 int dbpass = rs.getInt(1); //System.out.println(dbpass); if(dbpass>0){ //用户合法,可以进行预约}第 31 行。错误信息是 "ct cannot be resolved"。
在代码中,你创建了一个名为 "conn" 的 Connection 对象,但在第 31 行中使用了一个名为 "ct" 的 Statement 对象,这导致了编译错误 "ct cannot be resolved"。你需要将第 31 行中的 "ct" 改为 "conn",或者在代码中声明并初始化一个名为 "ct" 的 Statement 对象。
<%@ page language="java" import="java.util.*, java.sql.*" pageEncoding="utf-8"%> <%@page import="com.util.SQLConn"%> <%@page import="org.apache.commons.lang3.*" %> <%@page import="com.util.LOGS" %> <html> <body> <%-- 获取前端数据 --%> <% String username = request.getParameter("username"); String usernum = request.getParameter("usernum"); String name=request.getParameter("ytime"); String mon=request.getParameter("mtime"); String num=request.getParameter("rtime"); String people = request.getParameter("people"); %> <%-- 定义SQLConn类和INSERT_SQL常量 --%> <% final String INSERT_SQL = "INSERT INTO YuYue(UserID, Time, People) VALUES (?, ?, ?)"; %> <%-- 执行数据库操作 --%> <% int count = 0; try {Connection conn = SQLConn.openDB(); PreparedStatement pstmt = conn.prepareStatement(INSERT_SQL); { pstmt.setString(1, usernum); pstmt.setString(2, name+mon+num); pstmt.setString(3, people); count = pstmt.executeUpdate(); }} catch (SQLException e) { e.printStackTrace(); } %> <%-- 根据执行结果进行相应的操作 --%> <c:choose> <c:when test="${count > 0}"> <%-- 成功跳转到ZCS.jsp --%> <c:redirect url="ZCS.jsp"/> </c:when> <c:otherwise> <%-- 失败跳转到ZCB.jsp --%> <c:redirect url="../ZCB.jsp"/> </c:otherwise> </c:choose> </body> </html>优化代码
以下是对代码进行优化的建议:
1. 在第二行中,导入语句中的星号通配符应该避免使用,应该明确导入需要使用的类或接口。
2. 在第十行中,可以将 INSERT_SQL 常量定义在 SQLConn 类中并进行调用,以提高代码的可维护性和复用性。
3. 在第十二行中,PreparedStatement 对象应该使用 try-with-resources 语句,以自动释放资源并避免资源泄露问题。
4. 在第十六至二十二行中,可以使用 EL 表达式代替 JSTL 标签,以简化代码并提高可读性。
基于上述建议,优化后的代码如下:
```
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="java.util.*, java.sql.*"%>
<%@ page import="com.util.SQLConn"%>
<%@ page import="com.util.LOGS"%>
<%@ page import="org.apache.commons.lang3.*"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert Data</title>
</head>
<body>
<%-- 获取前端数据 --%>
<% String username = request.getParameter("username");
String usernum = request.getParameter("usernum");
String name = request.getParameter("ytime");
String mon = request.getParameter("mtime");
String num = request.getParameter("rtime");
String people = request.getParameter("people"); %>
<%-- 执行数据库操作 --%>
<% int count = 0;
try (Connection conn = SQLConn.openDB();
PreparedStatement pstmt = conn.prepareStatement(SQLConn.INSERT_SQL)) {
pstmt.setString(1, usernum);
pstmt.setString(2, name + mon + num);
pstmt.setString(3, people);
count = pstmt.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
} %>
<%-- 根据执行结果进行相应的操作 --%>
<c:if test="${count > 0}">
<%-- 成功跳转到 ZCS.jsp --%>
<jsp:forward page="ZCS.jsp"></jsp:forward>
</c:if>
<c:if test="${count <= 0}">
<%-- 失败跳转到 ZCB.jsp --%>
<jsp:forward page="../ZCB.jsp"></jsp:forward>
</c:if>
</body>
</html>
```
优化后的代码更加简洁、易读、易维护,并且避免了可能存在的一些问题。
阅读全文