解决不能打开的问题。String url = "jdbc:mysql://localhost:3306/student"; String user = "root", pwd = "271332"; Connection con; Statement sql; ResultSet rs; int count =0; try { Class.forName("com.mysql.cj.jdbc.Driver"); } catch (ClassNotFoundException e) { System.out.println("数据库加载失败" + e); } try { con = DriverManager.getConnection(url, user, pwd); String sqlStatement; sqlStatement = "SELECT * FROM student"; PreparedStatement pstm = con.prepareStatement(sqlStatement); rs = pstm.executeQuery(sqlStatement); while(rs.next()) { count++; } rs = pstm.executeQuery(sqlStatement); Object[][] info=new Object[count][6]; String []title= {"学号","姓名","出生日期","性别","专业","宿舍楼"}; count=0; while(rs.next()) { info[count][0]=rs.getString("sno"); info[count][1]=rs.getString("sname"); info[count][2]=rs.getString("sbirth"); info[count][3]=rs.getString("ssex"); info[count][4]=rs.getString("sclass"); info[count][5]=rs.getString("saddress"); count++; }
时间: 2024-02-29 16:53:18 浏览: 70
我通过百度网盘分享的文件:考研大纲链接:https://pan.baidu.com/s/112ALuQEFYZIBxxO-0S
如果您无法连接到MySQL数据库,可能有以下原因:
1. MySQL数据库未启动。请确保MySQL数据库已经启动,可以使用命令行工具来检查MySQL服务是否正在运行。
2. 数据库连接参数不正确。请检查数据库连接参数,包括主机名、端口号、用户名和密码是否正确。
3. 防火墙阻止了数据库连接。请检查您的防火墙设置,确保允许数据库服务端口的传入连接。
4. MySQL数据库配置不正确。请检查MySQL数据库的配置文件,例如my.cnf或my.ini文件,确保数据库配置正确。
如果您已经确认以上问题都已解决,但仍然无法连接到MySQL数据库,您可以尝试使用一个简单的Java程序连接MySQL数据库,以确定问题出在哪里。以下是一个示例程序,您可以尝试使用此程序连接到MySQL数据库:
```java
import java.sql.*;
public class MySQLConnectionTest {
public static void main(String[] args) {
String url = "jdbc:mysql://localhost:3306/student";
String user = "root";
String password = "271332";
try {
Connection conn = DriverManager.getConnection(url, user, password);
System.out.println("Connected to the MySQL server successfully.");
conn.close();
} catch (SQLException e) {
System.out.println("Failed to connect to the MySQL server.");
e.printStackTrace();
}
}
}
```
如果该程序可以成功连接到MySQL数据库,则说明问题可能出在您的代码中。如果程序仍然无法连接到MySQL数据库,则可能需要进一步检查MySQL数据库的配置和网络设置。
阅读全文