Fastest way to parse big json android
- by jem88
I've a doubt that doesn't let me sleep! :D
I'm currently working with big json files, with many levels. I parse these object using the 'default' android way, so I read the response with a ByteArrayOutputStream, get a string and create a JSONObject from the string. All fine here.
Now, I've to parse the content of the json to get the objects of my…