I have this Json File:
{
"code": "#0",
"data": {
"list": [
"Chris",
"Matt"
],
"time": 1453318488122
},
"millis": "1453492643260"
}
In Java using Gson how do I access the "data" part, then "list" and turn it into an ArrayList? I have tried looking online and they are all showing things way too complicated for what I want, like serializing a class into Json. I don't want that.. How do I access "List" array inside of "data" object and put into an ArrayList?