android - 如何在改造中对多个 json 数组使用回调?

标签 android json retrofit

我正在尝试改造如何从下面的响应中获取数据

{
  "schedule_students": [
    {
      "id": "753",
      "sch_id": "153"
    },
    {
      "id": "765",
      "sch_id": "153"
    }
  ],
  "s_students": [
    {
      "id": "753",
      "s_id": "153"
    },
    {
      "id": "765",
      "s_id": "153"
    }
  ],
  "schedu": [
    {
      "id": "753",
      "ch_id": "153"
    },
    {
      "id": "765",
      "ch_id": "153"
    }
  ],
  "delids": "no",
  "expdelids": "no",
  "lastsyncdate": "2015-06-01 10:33:19"
}

在我的 API 响应中它有多个 JSON 数组。如何从此响应中检索所有数据

最佳答案

为 JSON 数据集创建 POJO(Plain Old Java O对象)。 使用这个 tool生成 POJO。

SSudent.class

package com.example.someapp;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

package com.example.someapp;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class SStudent {

    @Expose
    private String id;
    @SerializedName("s_id")
    @Expose
    private String sId;

    /**
    * 
    * @return
    * The id
    */
    public String getId() {
    return id;
    }

    /**
    * 
    * @param id
    * The id
    */
    public void setId(String id) {
    this.id = id;
    }

    /**
    * 
    * @return
    * The sId
    */
    public String getSId() {
    return sId;
    }

    /**
    * 
    * @param sId
    * The s_id
    */
    public void setSId(String sId) {
    this.sId = sId;
    } 
}

类似地,Other 为其他类生成。

最后,

SomeClass.java

package com.example.someapp;

import java.util.ArrayList;
import java.util.List;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class SomeClass {

    @SerializedName("schedule_students")
    @Expose
    private List<ScheduleStudent> scheduleStudents = new ArrayList<ScheduleStudent>();
    @SerializedName("s_students")
    @Expose
    private List<SStudent> sStudents = new ArrayList<SStudent>();
    @Expose
    private List<Schedu> schedu = new ArrayList<Schedu>();
    @Expose
    private String delids;
    @Expose
    private String expdelids;
    @Expose
    private String lastsyncdate;

    /**
    * 
    * @return
    * The scheduleStudents
    */
    public List<ScheduleStudent> getScheduleStudents() {
    return scheduleStudents;
    }

    /**
    * 
    * @param scheduleStudents
    * The schedule_students
    */
    public void setScheduleStudents(List<ScheduleStudent> scheduleStudents) {
    this.scheduleStudents = scheduleStudents;
    }

    /**
    * 
    * @return
    * The sStudents
    */
    public List<SStudent> getSStudents() {
    return sStudents;
    }

    /**
    * 
    * @param sStudents
    * The s_students
    */
    public void setSStudents(List<SStudent> sStudents) {
    this.sStudents = sStudents;
    }

    /**
    * 
    * @return
    * The schedu
    */
    public List<Schedu> getSchedu() {
    return schedu;
    }

    /**
    * 
    * @param schedu
    * The schedu
    */
    public void setSchedu(List<Schedu> schedu) {
    this.schedu = schedu;
    }

    /**
    * 
    * @return
    * The delids
    */
    public String getDelids() {
    return delids;
    }

    /**
    * 
    * @param delids
    * The delids
    */
    public void setDelids(String delids) {
    this.delids = delids;
    }

    /**
    * 
    * @return
    * The expdelids
    */
    public String getExpdelids() {
    return expdelids;
    }

    /**
    * 
    * @param expdelids
    * The expdelids
    */
    public void setExpdelids(String expdelids) {
    this.expdelids = expdelids;
    }

    /**
    * 
    * @return
    * The lastsyncdate
    */
    public String getLastsyncdate() {
    return lastsyncdate;
    }

    /**
    * 
    * @param lastsyncdate
    * The lastsyncdate
    */
    public void setLastsyncdate(String lastsyncdate) {
    this.lastsyncdate = lastsyncdate;
    }

}

像这样在 Retrofit API 接口(interface)中使用 SomeClass.java。

 @GET("/your_api_endpoint")
 SomeClass getSomeClass(@Query("param") int param);

然后在调用getSomeClass(param)后作为SomeClass的对象正常访问。

关于android - 如何在改造中对多个 json 数组使用回调?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30570989/

相关文章:

Android ListView 理解

java - 使用QRCode Reader区分QRCode和QRCode的屏幕截图/图像

json - 如何验证 JSON 并显示任何错误的位置?

jquery - 如何将serializeArray作为json传递给MVC Controller

android - 在android中使用Base64改造图像上传

android - WP7 中的等效 Intent

java - ButterKnife 5.1.1 Proguard 错误

jquery - $.ajax 中的某些参数未传递

android - 改造2.0.0-beta4 : Unable to create converter for class

java - Retrofit - 接收 JSON 数组始终返回 NULL