如何解决java.lang.ClassNotFoundException:com.mysql.jdbc.Driver

时间:2014-02-16 15:19:18

标签: java mysql jdbc

我编写了这个java应用程序来响应命令行中的数据并将其存储到数据库中:

 import java.util.Scanner;
import java.sql.*;


public class Program {


    public static void main(String[] args)throws ClassNotFoundException 


    {


        Connection conn=null;

        try {

            Class.forName("com.mysql.jdbc.Driver");

             conn = DriverManager.getConnection("jdbc:mysql://localhost/DevOps_DB","root","root");


             PreparedStatement st = conn.prepareStatement("INSERT INTO pers " + "VALUES ('"+args[0]+"'); ");
             st.executeUpdate();


        } 



        catch (SQLException ex) {

            System.out.println("SQL Exception : "+ ex.getMessage());

            System.out.println("Vendor Error : "+ ex.getErrorCode());

        }


        catch(ClassNotFoundException ex) {

            ex.printStackTrace();


        }



//      
//      for(String arg : args)            
//      {   
//           System.out.println(arg);            
//      }




    }





}

但我有以下例外:

java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:323)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:268)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:190)
    at Program.main(Program.java:18)
为什么? ...有任何帮助解决问题吗?

编辑:

我添加了.jar文件,见下图:

enter image description here

6 个答案:

答案 0 :(得分:3)

您需要下载mysql connector jar文件(驱动程序实现)并将其添加到您的类路径中。

另一方面,如果您使用的是JDBC 4.0(我认为是Java 7甚至6),那么您无需使用Class.forName("com.mysql.jdbc.Driver");。只需将jar添加到类路径即可。将自动从类路径中搜索并加载驱动程序实现。

答案 1 :(得分:2)

您必须下载mysql连接器jar文件(驱动程序实现)并将其添加到类路径中。

答案 2 :(得分:2)

好的,你添加了jar.do一件事打开服务器, 表单窗口 - > show view->服务器 然后双击服务器

然后它会打开一个新窗口然后转到打开启动配置然后

转到类路径并添加mysql-connector.jar点击确定。

答案 3 :(得分:1)

@Akari:这与MySql的.jar文件有关。尝试检查MySql的.jar是否设置为类路径。

答案 4 :(得分:-1)

解压缩您可以从a link下载的mysql驱动程序! 并复制mysql zip的.jar文件并将其粘贴到“lib”Screenshot of the location u have to paste in into (in the interface)

答案 5 :(得分:-2)

使用 com.mysql.cj.jdbc.Driver 而不是 com.mysql.jdbc.Driver