为什么司机仍然缺失?

时间:2014-03-18 07:49:09

标签: java derby classnotfoundexception

我正在尝试将Java DB用于仅限应用程序的存储。

环境变量:

CLASSPATH:
%JAVA_HOME%\jre\lib;%DERBY_HOME%\lib\derby.jar
DERBY_HOME:
C:\Program Files\Java\jdk1.7.0_25\db
Path:
%DERBY_HOME%\bin

未完成eclipse配置的更改,我无法将其包含在构建路径中(它不会被视为第三方库,这是不允许的) 当我在cmd中输入“sysinfo”时,它会告诉我Db已经过时并列出包和其他信息。

代码:

   public class Main {
        private static String dbURL = "jdbc:derby:AssertDB;user=me;password=mine;create=true";
        private static Connection con = null;

    public static void main(String[] args) {
        setDBSystemDir();
        createConnection();
        CookiesTable pTable = new CookiesTable(con);
        try {
            pTable.createTable();
            pTable.populateTable();

        } catch (SQLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        // TODO Auto-generated method stub
        // load files
        // parse files to tables
        // retrive SQL statment
        // print result

    }

    private static void setDBSystemDir() {
        // Decide on the db system directory: <userhome>/.addressbook/
        String userHomeDir = System.getProperty("user.home", ".");
        String systemDir = userHomeDir + "/.asertdb";

        // Set the db system directory.
        System.setProperty("derby.system.home", systemDir);
    }

    private static void createConnection() {

        try {
            Class.forName("org.apache.derby.jdbc.EmbeddedDriver").newInstance();
            // Get a connection
            con = DriverManager.getConnection(dbURL);
        } catch (Exception except) {
            System.out.println("DRIVER DRROOOOOP");
            except.printStackTrace();
        }
    }

}

例外:

java.lang.ClassNotFoundException: org.apache.derby.jdbc.EmbeddedDriver
    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:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:190)
    at com.tuto.p4.Main.createConnection(Main.java:44)
    at com.tuto.p4.Main.main(Main.java:13)
Exception in thread "main" java.lang.NullPointerException
    at com.tuto.p4.CookiesTable.createTable(CookiesTable.java:29)
    at com.tuto.p4.Main.main(Main.java:16)

3 个答案:

答案 0 :(得分:0)

包括derbytools.jar,derbyclient.jar。

答案 1 :(得分:0)

如果您运行SampleApp,如果您获得java.lang.ClassNotFoundException: org.apache.derby.jdbc.EmbeddedDriver,请参阅文档有两件事要做。

  1. Configure Embedded Derby
  2. Verify Derby
  3. 正如您所说,您检查了sysinfo我会尝试添加derby.jarderbytools.jar,即使这些工具是可选的。

    或者您可以将SampleApp与您的应用程序进行比较....

答案 2 :(得分:0)

尝试放System.out.println(System.getProperty("java.class.path"));Class.forName(...).newInstance()之前

输出必须包含derby.jar的有效路径。