Honeycomb 上的 db4o Db4oException:文件格式不兼容
我在一个小项目中使用 db4o,该项目在 Android 2.2、2.3 等上运行良好。但是,在 Honeycomb 上,数据库初始化会导致以下错误:
com.db4o.ext.Db4oException: File format incompatible: '/data/data/com.myapp/app_data/my_app.db4o'
强制关闭,并且该错误发生在运行 Honeycomb 的 Xoom 和 Galaxy Tab 上运行蜂窝。
相关代码是:
public ObjectContainer db() {
// Create, open, and close the database
try {
if (oc == null || oc.ext().isClosed()) {
oc = Db4oEmbedded
.openFile(dbConfig(), db4oDBFullPath(mContext));
}
return oc;
} catch (Exception e) {
Log.e(CFAApplication.TAG, e.toString());
return null;
}
}
private String db4oDBFullPath(Context ctx) {
// Returns the path for the database location
return ctx.getDir("data", 2) + "/" + "myapp.db4o";
}
public List<MyItem> getListItem(final String passedItemTitle) {
List<MyItem> result = db().query(new Predicate<MyItem>() { // Error occurs here
public boolean match(MyItem listItem) {
if (passedItemTitle.equals(listItem.getTitle())) {
return true;
}
return false;
}
});
return result;
}
Honeycomb处理其外部文件系统的方式有什么不同吗?我可以在 db4oDBFullPath() 方法中更改任何内容以使两者兼容吗?我真的不知道发生了什么不同的事情。也许我需要启用一些特定于 Honeycomb 的权限?
I'm using db4o in a small project that works great on Android 2.2, 2.3, etc. On Honeycomb, however, database initialization results in the following error:
com.db4o.ext.Db4oException: File format incompatible: '/data/data/com.myapp/app_data/my_app.db4o'
This force close and the error occur on both a Xoom running Honeycomb and a Galaxy Tab running Honeycomb.
The relevant code is:
public ObjectContainer db() {
// Create, open, and close the database
try {
if (oc == null || oc.ext().isClosed()) {
oc = Db4oEmbedded
.openFile(dbConfig(), db4oDBFullPath(mContext));
}
return oc;
} catch (Exception e) {
Log.e(CFAApplication.TAG, e.toString());
return null;
}
}
private String db4oDBFullPath(Context ctx) {
// Returns the path for the database location
return ctx.getDir("data", 2) + "/" + "myapp.db4o";
}
public List<MyItem> getListItem(final String passedItemTitle) {
List<MyItem> result = db().query(new Predicate<MyItem>() { // Error occurs here
public boolean match(MyItem listItem) {
if (passedItemTitle.equals(listItem.getTitle())) {
return true;
}
return false;
}
});
return result;
}
Is there some difference in the way Honeycomb handles its external file system? Is there anything I can change in the db4oDBFullPath() method that would make the two compatible? I'm really at a loss as to what's happening that's different. Maybe there are some Honeycomb-specific permissions that I need to enable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它已在最新版本中修复:
http://community .versant.com/Blogs/db4o/tabid/197/entryid/1057/Default.aspx
It's been fixed in the latest release:
http://community.versant.com/Blogs/db4o/tabid/197/entryid/1057/Default.aspx
我在 Xoom 上看到了类似的东西。事实证明,文件创建出错是因为 Xoom 在严格模式下运行,而严格模式阻止了 DB4o 打电话回家。留下损坏的存根数据库。尝试在 AsyncTask 中执行初始 Db4oEmbedded.openFile 操作。
当然是删除损坏的文件后。
I saw something similar on a Xoom. Turns out file creation was erring out because the Xoom runs in strict mode and strict mode was preventing DB4o from phoning home. Leaving a corrupted stub database. Try doing your initial Db4oEmbedded.openFile inside an AsyncTask.
After deleting the corrupted file of course.
当我在 AndroidManifest.xml 中包含下一行时消失:
值得一提的是,我还编写了在单独的线程中处理 db4o 的代码...
所以代码看起来像:
AndroidManifest.xml 是:
调试输出是:
dissapears when I include in the AndroidManifest.xml the next line:
it is important to mention that additionally I made the code for dealing with the db4o in separate thread...
so the code looks like:
and the AndroidManifest.xml is:
the debug output is: