写一个使用Java和MySQL写一个学生信息管理系统
时间: 2023-09-03 16:11:07 浏览: 114
好的,下面是一个简单的学生信息管理系统的Java代码,使用MySQL数据库:
```java
import java.sql.*;
import java.util.Scanner;
public class StudentManagementSystem {
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost:3306/student";
static final String USER = "root";
static final String PASSWORD = "root";
static Connection conn = null;
static Statement stmt = null;
static ResultSet rs = null;
public static void main(String[] args) {
try {
// 注册 JDBC 驱动器
Class.forName(JDBC_DRIVER);
// 打开一个连接
System.out.println("连接数据库...");
conn = DriverManager.getConnection(DB_URL, USER, PASSWORD);
// 执行查询
stmt = conn.createStatement();
String sql = "SELECT * FROM student";
rs = stmt.executeQuery(sql);
// 遍历结果集
while (rs.next()) {
// 获取该行记录的数据
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
// 输出记录
System.out.print("ID: " + id);
System.out.print(", 姓名: " + name);
System.out.println(", 年龄: " + age);
}
// 关闭资源
rs.close();
stmt.close();
conn.close();
} catch (SQLException se) {
// 处理 JDBC 错误
se.printStackTrace();
} catch (Exception e) {
// 处理 Class.forName 错误
e.printStackTrace();
} finally {
// 关闭资源
try {
if (stmt != null) stmt.close();
} catch (SQLException se2) {
}
try {
if (conn != null) conn.close();
} catch (SQLException se) {
se.printStackTrace();
}
}
}
}
```
该代码使用JDBC连接MySQL数据库,查询学生信息表中的所有记录,并输出到控制台。当然,这只是一个最简单的演示,如果您需要实现更多的功能,可以根据上面提到的步骤进行开发和完善。
阅读全文