整天都在苦苦挣扎。我觉得我是一个远离正确解决方案的注释。
我从API获取JSON,并使用Gley内部的Volley请求将其解析为对象。 然后我想使用ORMLite将对象存储在DB中。
问题是我的JSON有其他对象的列表。所以我决定要求ForeignCollection。
以下是我作为JSON获得的简化版本:
{
"b": [
{"title"="abc","id="24sfs"},
{"title"="def", "id="532df"}
],
"c": [
{"description"="abc","id="34325"},
{"description"="def", "id="34321"}
],
"id"="ejsa"
}
让我们调用整个对象类A." b"中的对象是B,内部" c",C类。
B和C是相似的。这导致以下类定义:
class A {
@DatabaseField(index = true, unique = true, id = true)
private String id;
@ForeignCollectionField(eager = true)
public Collection<B> bCollection;
public ArrayList<B> b;
@ForeignCollectionField(eager = true)
public Collection<C> cCollection;
public ArrayList<C> c;
}
class B {
@DatabaseField(foreign=true)
public A a;
@DatabaseField(id = true, index = true, unique = true)
public String id;
@DatabaseField
public String title;
}
我们需要ArrayList b和c的原因是gson可以正确解析它。所以,一旦我在内存中有A类,这就是我要做的事情来存储它
private void storeA(A a) {
if (a.b != null) {
getHelper().getDao(B.class).callBatchTasks(new Callable<Void>() {
@Override
public Void call() throws Exception {
for (B b : a.b) {
b.a = a;
try {
getHelper().getDao(B.class).createOrUpdate(b);
} catch (Exception e) {
}
}
return null;
}
});
}
/*
Here we start running into problems. I need to move the data from the ArrayList to the Collection
*/
a.bCollection = a.b; // but this seems to work, since bCollection is a Collection
a.cCollection = a.c;
getHelper().getDao(A.class).createOrUpdate(a);
}
所以它似乎存储正确,据我所知没有错误。但是,当我尝试按如下方式检索时,我无法从bCollection中检索任何内容:
private void load() {
try {
List<A> as = getHelper().getDao(A.class).queryForEq("id", "ejsa");
if (as != null && as.size() > 0) {
A a = as.get(0);
CloseableWrappedIterable<B> cwi = a.bCollection.getWrappedIterable();
try {
for (B b : cwi) {
Log.e(b.title);
}
} finally {
cwi.close();
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
我做错了什么?我是否需要为其中一些事项指定foreignColumnName?我无法判断事情是否存储不正确,或者我是否未能正确检索它们?
答案 0 :(得分:1)
我会尝试删除以下两行:
a.bCollection = a.b;
a.cCollection = a.c;
当您查询A时,ORMLite会自动为您填充ForeignCollection
,您不需要自己设置它们。