I am facing an issue while I am trying to deserialize a JSON array of objects using the Gson library.
An example of the JSON array:
[
{"ID":1,"Title":"Lion","Description":"bla bla","ImageURL":"http:\/\/localhost\/lion.jpg"},
{"ID":1,"Title":"Tiger","Description":"bla bla","ImageURL":"http:\/\/localhost\/tiger.jpg"}
]
What do you think? What is the proper Java code to deserialize such a JSON response?