我该如何进行POJO
课程?对象可能具有无限数组。
这是我的JSON
,
{
"result": {
"0": [{
"id": "51",
"first_name": "ra",
"last_name": "d",
"email": "raj@gmail.com",
"password": "1234",
"mobile_no": "8252536365",
"parent_id": "50",
"position": "0",
"type": "User",
"created_at": "1476447434",
"updated_at": "1476447434",
"deleted_at": null,
"stage": 0,
"total_childs": 0
}, {
"id": "52",
"first_name": "Ashish",
"last_name": "Chauhan",
"email": "ashish@mlm.com",
"password": "12345",
"mobile_no": "89889989832",
"parent_id": "8",
"position": "1",
"type": "admin",
"created_at": "1476702542",
"updated_at": "1476702542",
"deleted_at": null,
"stage": 0,
"total_childs": 0
}],
"2": [{
"id": "2",
"first_name": "Ashish",
"last_name": "Chauhan",
"email": "ashish@mlm.com",
"password": "12345",
"mobile_no": "89889989832",
"parent_id": "1",
"position": "0",
"type": "admin",
"created_at": "1475674631",
"updated_at": "1475674631",
"deleted_at": null,
"stage": 2,
"total_childs": 2
}],
"1": [{
"id": "7",
"first_name": "Shiva",
"last_name": "Singh",
"email": "shiva@mlm.com",
"password": "12345",
"mobile_no": "89889989832",
"parent_id": "2",
"position": "0",
"type": "user",
"created_at": "1475674808",
"updated_at": "1475674808",
"deleted_at": null,
"stage": 1,
"total_childs": 2
}, {
"id": "8",
"first_name": "Atul",
"last_name": "Kumar",
"email": "atul@mlm.com",
"password": "12345",
"mobile_no": "89889989832",
"parent_id": "2",
"position": "1",
"type": "user",
"created_at": "1475674835",
"updated_at": "1475674835",
"deleted_at": null,
"stage": 1,
"total_childs": 2
}]
}
}
答案 0 :(得分:1)
如果您正在尝试为改造形成json响应模式:
public class MyPojo
{
private String position;
private null deleted_at;
private String type;
private String stage;
private String password;
private String id;
private String first_name;
private String total_childs;
private String updated_at;
private String email;
private String last_name;
private String created_at;
private String mobile_no;
private String parent_id;
public String getPosition ()
{
return position;
}
public void setPosition (String position)
{
this.position = position;
}
public null getDeleted_at ()
{
return deleted_at;
}
public void setDeleted_at (null deleted_at)
{
this.deleted_at = deleted_at;
}
public String getType ()
{
return type;
}
public void setType (String type)
{
this.type = type;
}
public String getStage ()
{
return stage;
}
public void setStage (String stage)
{
this.stage = stage;
}
public String getPassword ()
{
return password;
}
public void setPassword (String password)
{
this.password = password;
}
public String getId ()
{
return id;
}
public void setId (String id)
{
this.id = id;
}
public String getFirst_name ()
{
return first_name;
}
public void setFirst_name (String first_name)
{
this.first_name = first_name;
}
public String getTotal_childs ()
{
return total_childs;
}
public void setTotal_childs (String total_childs)
{
this.total_childs = total_childs;
}
public String getUpdated_at ()
{
return updated_at;
}
public void setUpdated_at (String updated_at)
{
this.updated_at = updated_at;
}
public String getEmail ()
{
return email;
}
public void setEmail (String email)
{
this.email = email;
}
public String getLast_name ()
{
return last_name;
}
public void setLast_name (String last_name)
{
this.last_name = last_name;
}
public String getCreated_at ()
{
return created_at;
}
public void setCreated_at (String created_at)
{
this.created_at = created_at;
}
public String getMobile_no ()
{
return mobile_no;
}
public void setMobile_no (String mobile_no)
{
this.mobile_no = mobile_no;
}
public String getParent_id ()
{
return parent_id;
}
public void setParent_id (String parent_id)
{
this.parent_id = parent_id;
}
}
然后在你的api电话中:
Call<ResultResponse> xyz=interfacexyz.getResults(new Callback(...))
您可以将resultResponse定义为:
<强> ResultRespone.java:强>
public class ResultRespone
{
@SerializedName("results")
List<Map<string,MyPojo>> resultList;
// define getters and setters
....
....
}
然后您可以访问单个结果:
ResultResponse=response.body();
ResultResponse.get(0);//to get element at 0th position
答案 1 :(得分:0)
您的JSON中有动态密钥为&#34; 1&#34;,&#34; 2&#34;,&#34; 3&#34;等等..所以你必须使用密钥的conecpt。 使用JSONObject keys()获取密钥,然后迭代每个密钥以获得动态值。
This示例将帮助您了解您想要做什么。