gpt4 book ai didi

java - com.mysql.jdbc.Driver,类notfoundexception

转载 作者:行者123 更新时间:2023-11-29 00:23:35 24 4
gpt4 key购买 nike

<分区>

我正在尝试运行一个动态 Web 项目并已建立数据库连接。但是,当我尝试运行以下代码时,我一次又一次地收到“java.lang.ClassNotFoundException: com.mysql.jdbc.Driver”异常:

    public class ConnectionC
{
public static Connection connectDao()
{
try
{

Connection dbconn= null;
String url = "jdbc:mysql://localhost:3306/practsql";
String user="root";
String password="tiger";

Class.forName("com.mysql.jdbc.Driver");
dbconn=DriverManager.getConnection(url, user, password);
return dbconn;
}
catch(ClassNotFoundException e)
{
System.out.println(e);
}
catch(SQLException e)
{
System.out.println(e);
}
return null;


}

public static void commitChange()
{
try
{
Connection dbconn= null;
String url = "jdbc:mysql://localhost:3306/practsql";
String user="root";
String password="tiger";

Class.forName("com.mysql.jdbc.Driver");
dbconn=DriverManager.getConnection(url, user, password);
dbconn.commit();
}
catch(ClassNotFoundException e)
{
System.out.println(e);
}
catch(SQLException e)
{
System.out.println(e);
}



}
}

我还在构建路径中添加了 jar 文件“mysql-connector-java-5.1.27-bin”。但是它显示相同的错误。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com