0

我想比较来自 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();
    }
}
4

2 回答 2

1

代替

tratdb4o.getMedication()==tratJson.getMedication()

tratdb4o.getMedication().equals(tratJson.getMedication())
于 2012-08-28T04:44:22.847 回答
1

对于不使用“==”的字符串

    tratdb4o.getMedication().equals(tratJson.getMedication());

但是对于检查notequals,您仍然可以使用!=

于 2012-08-28T04:45:04.317 回答