“ClassNotFoundException:com.mysql.jdbc.Driver”

时间:2014-03-15 04:07:39

标签: java jdbc database-connection classnotfoundexception

我是使用IntelliJ 13的新手,我在连接MySQL方面遇到了问题。我正在使用下面的代码,这段代码我从使用IntelliJ IDEA 12管理您的数据库方案的教程中学习。

public class App {

    public static  final  String JDBC_DRIVER = "com.mysql.jdbc.Driver";
    public static final String JDBC_URL = "jdbc:mysql://localhost/sample";
    public static final String JDBC_USER = "root";
    public static final String JDBC_PASSWORD = "";

    public static void main (String[] args) throws SQLException, ClassNotFoundException {
        Statement statement = null;
        try{
            Class.forName(JDBC_DRIVER);
            Connection connection = DriverManager.getConnection(JDBC_URL, JDBC_USER, JDBC_PASSWORD);
            statement = connection.createStatement();
            ResultSet resultSet = statement.executeQuery("select id, firstname, lastname, email " +
                    "from customer");
            System.out.println("First name\tLast name\tEmail");
            int count = 0;
            while (resultSet.next()){
                String firstname = resultSet.getString("firstname");
                String lastname = resultSet.getString("lastname");
                String email = resultSet.getString("email");
                System.out.printf("%s\t%s\t%s%n", firstname, lastname, email);
                count++;
            }
            System.out.println("--");
            System.out.println(MessageFormat.format("Rows: {0}", count));
        } finally {
            if(statement != null){
                statement.close();
            }
        }
    }
}

我在https://stackoverflow.com/上尝试了很多基于此问题的解决方案,但没有什么能解决我的问题。 它给出了像这样的错误信息

Connection to MySQL – sample@localhost failed: Exception in thread “main” java.lang.ClassNotFoundException: com.mysql.jdbc.Driver             
    at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:190)
    at com.intellij.persistence.database.console.RemoteJdbcServer.main(RemoteJdbcServer.java:15)

我也跟着这个来解决我的问题,但即使问题是相同的,也没有任何作用。 http://nixmash.com/java/classnotfoundexception-com-mysql-jdbc-driver-fix-in-intellij-idea/。实际上,我想在IntelliJ 13上使用MySQL创建数据库,但与MySQL的连接失败。我试图通过在项目结构中放置mysql-connector-java-5.1.26-bin.jar来解决这个问题,但它对我不起作用。我不知道如何解决这个问题?我希望这个问题的一些专家能帮助我解决这个问题。 我无法使用评论,我不知道为什么。所以我在这里回答答案。 Ashish:我已经下载了jar文件,但我不知道把文件放到哪里。你知道吗?

1 个答案:

答案 0 :(得分:0)

您需要下载包含com.mysql.jdbc.Driver的jar。 因此,您可以Download jar从此处开始,然后设置classpath