gpt4 book ai didi

android - 如何修复预期的字符串,但在带有改造的嵌套数组上是 BEGIN_OBJECT

转载 作者:行者123 更新时间:2023-11-29 18:33:07 28 4
gpt4 key购买 nike

大家好,我遇到了 Expected a string but was BEGIN_OBJECT 的问题我已经浏览了 2 天了,我找不到解决方案,需要帮助来解决这个问题,谢谢

我将 json 内容存储在数据库中,但在我的 json 中我得到了一个嵌套数组,

这是我的 json 文件中的第一个项目

[
{
"id": "355",
"indicaciones": "text",
"efectos_secundarios": "text",
"contraindicaciones": "",
"precauciones_advertencias": "text",
"interacciones": "",
"nombre_principio_activo": "Decoquinato",
"especies": [
{
"especies_id": "1"
},
{
"especies_id": "2"
},
{
"especies_id": "3"
},
{
"especies_id": "4"
},
{
"especies_id": "9"
}
]
}
]

这是我的模型,带有构造器、getter 和 seter

    private int id;
private String indicaciones;
private String dosis_via_administracion;
private String efectos_secundarios;
private String contraindicaciones;
private String precauciones_advertencias;
private String nombre_principio_activo;
private String especies;

我的应用程序

   @GET("formulario.txt")
Call<List<FormularioModel>> getFormularios();

这是我的改造,我在这里失去了理智

    //store formilarion on database
public void storeFormulariosToDb(){
Retrofit retrofitCat = new Retrofit.Builder()
.baseUrl(ApiForm.BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
ApiForm apicat = retrofitCat.create(ApiForm.class);
Call<List<FormularioModel>> callCat = apicat.getFormularios();
callCat.enqueue(new Callback<List<FormularioModel>>() {
@Override
public void onResponse(Call<List<FormularioModel>> callCat, Response<List<FormularioModel>> response) {
List<FormularioModel> obtenercate =db.getALLFormulario();
List<FormularioModel> cat = response.body();
if(obtenercate.size() < cat.size()){
for(int i = 0; i < cat.size(); i++){
FormularioModel cat1 = new FormularioModel(
cat.get(i).getId(),
cat.get(i).getIndicaciones(),
cat.get(i).getDosis_via_administracion(),
cat.get(i).getEfectos_secundarios(),
cat.get(i).getContraindicaciones(),
cat.get(i).getPrecauciones_advertencias(),
cat.get(i).getNombre_principio_activo(),
cat.get(i).getEspecies()); // Here is my problem


db.createFormularios(cat1);
}

}

}

@Override
public void onFailure(Call<List<FormularioModel>> callCat, Throwable t) {
Log.e("obtener formulario", t.getMessage()); }
});
}

这是我要存储到数据库的 DBHelper

 public long createFormularios(FormularioModel itemFORM){
SQLiteDatabase db = this.getWritableDatabase();

ContentValues valores = new ContentValues();
valores.put(FORMULARIO_ID, itemFORM.getId());
valores.put(FORMULARIO_INDICA, itemFORM.getIndicaciones());
valores.put(FORMULARIO_VIA, itemFORM.getDosis_via_administracion());
valores.put(FORMULARIO_EFECT, itemFORM.getEfectos_secundarios());
valores.put(FORMULARIO_CONTRA, itemFORM.getContraindicaciones());
valores.put(FORMULARIO_PRECA, itemFORM.getPrecauciones_advertencias());
valores.put(FORMULARIO_NOMBRE, itemFORM.getNombre_principio_activo());
valores.put(FORMULARIO_ESPECIE, itemFORM.getEspecies());


long formulario_id = db.insert(TABLE_FORMULARIOS, null, valores);

return formulario_id;

}

并读取我的数据库

 public List<FormularioModel> getALLFormulario(){
List<FormularioModel> forms = new ArrayList<>();
String selectQuery = " SELECT * FROM "
+ TABLE_FORMULARIOS
+ " ORDER BY "
+ FORMULARIO_NOMBRE + " ASC";

SQLiteDatabase db = this.getReadableDatabase();
Cursor c = db.rawQuery(selectQuery,null);

if(c.moveToFirst()){
do{
FormularioModel t = new FormularioModel();
t.setId(c.getInt(c.getColumnIndex(FORMULARIO_ID)));
t.setIndicaciones(c.getString(c.getColumnIndex(FORMULARIO_INDICA)));
t.setDosis_via_administracion(c.getString(c.getColumnIndex(FORMULARIO_VIA)));
t.setEfectos_secundarios(c.getString(c.getColumnIndex(FORMULARIO_EFECT)));
t.setContraindicaciones(c.getString(c.getColumnIndex(FORMULARIO_CONTRA)));
t.setPrecauciones_advertencias(c.getString(c.getColumnIndex(FORMULARIO_PRECA)));
t.setNombre_principio_activo(c.getString(c.getColumnIndex(FORMULARIO_NOMBRE)));
t.setEspecies(c.getString(c.getColumnIndex(FORMULARIO_ESPECIE)));
forms.add(t);
} while (c.moveToNext());
}
return forms;
}

我想将 especies 数组保存为字符串,以便能够在我的 Activity 中显示它,谢谢你的帮助

最佳答案

问题出在你的model上类 especies不是字符串 listobjects

在你的模型中改变private String especies;private List<Especies> especies;并创建一个名为 Especies 的类如下图

public class Especies {
private String especies_id;
...
}

关于android - 如何修复预期的字符串,但在带有改造的嵌套数组上是 BEGIN_OBJECT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55306772/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com