所以这是我的简单设置,我在其中设置了必要的临时目录属性。
private static void accessReadOnlyJar() {
try {
Class.forName("org.apache.derby.jdbc.EmbeddedDriver").newInstance();
Properties props = new Properties();
String tempDir = System.getProperty("java.io.tmpdir");
props.setProperty("derby.storage.tempDirectory", tempDir);
props.setProperty("derby.stream.error.file", tempDir+"derby_error.log");
Connection connection = DriverManager.getConnection("jdbc:derby:jar:(data/db.jar)derbyDB", props);
Statement statement = connection.createStatement();
ResultSet result = statement.executeQuery("SELECT * FROM TESTTABLE");
while(result.next()){
System.out.println(result.getString("NAME"));
}
connection.close();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
}
tempDir 的好位置可能是:
- 系统临时目录:
System.getProperty("java.io.tmpdir")
- 你的工作目录:
"."
- 您的应用程序目录:
ClassLoader.getSystemClassLoader().getResource(".").getPath()
或与之相关的任何东西;-)
如果这不能解决您的问题,请检查/重新创建您的数据库。如果在您打包 jar 之前它没有很好地关闭,derby 将始终尝试在启动时恢复。