错误:给定文件不存在:字典

时间:2017-11-08 11:22:33

标签: android jackcess

我在res/raw和res目录下添加了我的 dictionary.accdb 文件,但我得到的文件不存在:字典错误

Thread.currentThread().setContextClassLoader(getClass().getClassLoader());
System.setProperty("com.healthmarketscience.jackcess.brokenNio","true");
System.setProperty("com.healthmarketscience.jackcess.resourcePath ","res/raw/");
Database database = null;
Table table = null;
try {
  database = DatabaseBuilder.open(new File("dictionary.accdb"));
} catch (IOException e) {
  e.printStackTrace();
}

和错误日志

java.io.FileNotFoundException: given file does not exist: dictionary

0 个答案:

没有答案