I am using RoboSpice with SpringAndroid to parse JSON data. Even though I managed to get almost all JSON objects I couldn’t retrieve inner arraylist of json objects within the main json object.
This is the structure of result JSON to be parsed:
{
-Model[n]:
-0:
{
name:"abcd"
innerList[3]:
{
-0:
{
innerObject:
{
id:"10"
....
}
.....
}
}
}
}
I am getting a null pointer exception when I'm accessing the data members in the POJO of the innerObject.
@JsonIgnoreProperties(ignoreUnknown = true)
public class Model{
@JsonProperty("name")
private String Name;
@JsonProperty("innerList")
private ArrayList<ClassInnerList> inner;
//getters and setters
}
The POJO for innerList:
@JsonIgnoreProperties(ignoreUnknown = true)
public class ClassInnerList
{
@JsonProperty("innerObject")
ClassInnerObject innerObject;
//getters and setters
}
The POJO for Innerobject
@JsonIgnoreProperties(ignoreUnknown = true)
public class ClassInnerObject{
@JsonProperty("Id")
String Id;
//getters and setters
}
The request class is as follows
public class GetDetailsRequest extends SpringAndroidSpiceRequest<Model>
{
private String url;
private Model Model;
public GetDetailsRequest() {
super(Model.class);
this.url="my url"
...........
}
@Override
public Model loadDataFromNetwork() throws Exception {
RestTemplate restTemplate=new RestTemplate();
restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
HttpHeaders httpHeaders=new HttpHeaders();
httpHeaders.set("key","keyvalue");
httpHeaders.setAccept(Collections.singletonList(new MediaType("application","json)));
HttpEntity<?> requestEntity = new HttpEntity<Object>(httpHeaders);
ResponseEntity<Model> ResponseEntity=restTemplate.exchange(url, HttpMethod.GET,requestEntity,Model.class);
Model=ResponseEntity.getBody();
return Model;
}
}