I know there are many JSON with GSON questions but none of them relate to me directly. My JSON is formatted differently.
I have a JSON data I want to parse using GSON wh
If you have a JsonArray like [ {..} , {..} ] you can do this with Gson:
JsonArray
[ {..} , {..} ]
Item[] items = gson.fromJson(json, Item[].class);