Custom JSON Deserializer for initiating your Java Model Class
Updated 14 May 2018
Save
In this blog, we will learn about using Custom JSON Deserializer for initiating your Java Model Class from some JSON Object (or Http response or File or any Source).
What this blog contains?
This blog will help you parse a JSON Object to your relevant Java model class,
or in better words a list of Objects of your Java Model class.
Well, I was recently working on some Android project and am using Retrofit with Gson for easily parsing and allocating the objects received from APIs.
All was going very well, until recently, I faced an issue with the parsing of ArrayList of some submodels in my Model class. The exception log was something like
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
W:com.google.gson.JsonSyntaxException:java.lang.IllegalStateException:Expected BEGIN_ARRAY but was BEGIN_OBJECT at line1column3298path$.bannerImages
Well, the reason for this was clearly mentioned, the GsonTypeConverter, added in my Retrofit class was actually expecting an Array but the API Returned an Object.
But in our test APIs were returning an array only.
When we looked further in the core execution of the API return values,
we found that if there is a single object then an instance of Object will be returned and when there are more than one objects then an array will be returned and this working cannot be modified for unknown reasons.
Ahhh!!!!!!!!
This blog aims to resolve the issue mentioned above.
And I have two solutions for you to look and use :
Making the Object as some generic Object and then converting it to ArrayList on the runtime.
Making a Custom Deserializer that will extend the JsonDeserializer ( the class that Gson uses and using as per your case).
I tried both the options mentioned above and will share the code for both of them, but I personally liked the first option.
Let’s discuss the first solution in detail first.
APPROACH
Declare the object in ambiguity as an object of JsonElement class.
In you getter, where you were fetching the list from now you need to modify the getter type to JsonElement ( Pretty Obvious)
You need to fetch the list of the Objects with some other function and this getter should be something shown in the snippet below.
CODE
Old (Problematic) Model class :
previous model class
1
2
3
4
5
6
7
8
9
publicclassMyApiResponse{
@SerializedName("results")
@Expose
privateList<Result>results;
publicList<Result>getResults(){
returnresults;
}
}
New Modified And Updated Model Class :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
publicclassMyApiResponse{
@SerializedName("results")
@Expose
privateJsonElement results;// This has been Changed.
privateList<Result>resultsList=null;// This has been added newly and cannot be initialized by gson.
publicJsonElement getResults(){
returnresults;
}
publicList<Result>getResultsList(){
List<Result>resultList=newArrayList<>();// Initializing here just to cover the null pointer exception
A dynamic developer specializing in Flutter, Dart, and React Native. Delivers high-performance Android and iOS apps with intuitive designs, scalability, and seamless cross-platform integration.
Hi,
Can you share your code so that I can have a look into your problem?
You can try these steps:
1) try printing the response received from the server
2) Match the key in quotes after @SerializedName to be exactly same as recieved from the server response.
3) If server response is null then you need to handle this case separatley and return null or empty arraylist as per your feasibility.
Still, if you face any difficaulty, then do share your code with me and i will look into the issue.
Can you share some demo credentials that i can check with.
Currently i just checked with some random email and password combination and the api that you have written in your code fetched html as response and not json.
8 comments
Can you share your code so that I can have a look into your problem?
You can try these steps:
1) try printing the response received from the server
2) Match the key in quotes after @SerializedName to be exactly same as recieved from the server response.
3) If server response is null then you need to handle this case separatley and return null or empty arraylist as per your feasibility.
Still, if you face any difficaulty, then do share your code with me and i will look into the issue.
Currently i just checked with some random email and password combination and the api that you have written in your code fetched html as response and not json.