Realm Database con Android Studio

时间:2019-11-24 23:10:12

标签: mysql json android-studio realm

我在我的android项目中使用Realm数据库,该数据库在初始屏幕中将mysql数据库中的所有信息加载到Realm中,但是当我断开与互联网的连接时,它将带给我除图像之外的所有信息,因为这会?

private void refreshContentListSubCategoria_Categoria(JSONArray contenido)throws JSONException {
        subCategoria_categoriasList.clear();
        for(int i = 0; i < contenido.length(); i++ ){
            JSONObject object = contenido.getJSONObject(i);
            subCategoria_categoriasList.add(new SubCategoria_Categoria(
                            object.getInt("suncate_id"),
                            object.getInt("categoria_id"),
                            object.getInt("subcategoria_id"),
                            object.getInt("juego_id")
                    )
            );
        }

        for(int i = 0; i < subCategoria_categoriasList.size(); i++ ){
            realmSubCate.beginTransaction();
            realmSubCate.copyToRealmOrUpdate(subCategoria_categoriasList.get(i), ImportFlag.CHECK_SAME_VALUES_BEFORE_SET);
            realmSubCate.commitTransaction();

        }


    }

0 个答案:

没有答案