我想比较来自 db4o 和 JSON 的对象。如果 JSON 中不存在该对象,我应该删除 db4o 中的对象。
我对 if 有疑问:
if(tratdb4o.getMedication()==tratJson.getMedication()
我记录了两个字符串变量,它们都是相同的,但没有进入 If 以更改 igual 的值。
有人知道为什么吗?
for (int i=0;it2.hasNext();i++ ) {
objetoDb4o=it2.next();
tratdb4o=(Tratam)objetoDb4o;
for (int j=0;it.hasNext();j++ ) {
objetoJson = it.next();
tratJson = (Tratam)objetoJson;
Log.d(TAG,"Comparing "+tratdb4o.getMedication()+" of db4o "+ tratJson.getMedication() +" of JSON");
if(tratdb4o.getMedication()==tratJson.getMedication()
igual true;
}
if (igual==false){
db4oHelper.db().delete(tratdb4o);
db4oHelper.listResult();
}
igual=false;
it=listaendb4o.iterator();
}
}