1

可能重复:
Java 连接到远程 MySQL 数据库

我正在尝试使用以下代码连接到 Eclipse 和 Java 中的 MySQL 数据库:

System.out.println("MySQL Connect Example.");
      Connection conn = null;
      String url = "jdbc:mysql://localhost:3306/";
      String dbName = "RS";
      String driver = "com.mysql.jdbc.Driver";
      String userName = "root"; 
      String password = "root";
      try {
      Class.forName(driver).newInstance();
      conn = DriverManager.getConnection(url+dbName,userName,password);
      System.out.println("Connected to the database");
      conn.close();
      System.out.println("Disconnected from database");
      } catch (Exception e) {
      e.printStackTrace();
      }

但是,我收到以下错误:

    MySQL Connect Example.
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:321)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:186)
    at Expertise.main(Expertise.java:57)
4

3 回答 3

4

您需要将 mysql jdbc 驱动程序 jar 添加到您的类路径中。

于 2012-12-22T19:29:56.233 回答
2

从这里下载 mysql-connector 到本地目录http://www.mysql.com/products/connector/

  1. 转到 Eclipse 并通过右键单击它来选择您的项目。
  2. 然后将显示一个弹出菜单。在那里查找项目属性并选择它。
  3. 将出现属性窗口,在左侧查找项目 Java Build-path 选择它
  4. 然后在窗口右侧,您将看到一个带有“添加库”标题的按钮。单击它并查找您刚刚下载的 .jar 文件。
于 2012-12-22T19:34:00.863 回答
1
  1. 确保 MySQL jar 在您的类路径中
  2. 确保您在课堂上有正确的导入。
于 2012-12-22T19:34:45.310 回答