How Do I Query A Json File In Android Without Parsing The Entire File?
I remember with the old twitter web service you could do something like: http://search.twitter.com/search.json?q=blahblah and that would return a JSON object that addresses a certa
Solution 1:
You should look for JSON Streaming parser. Which basically parse the specific JSON Object instead of parsing complete JSON.
As recommended go for Jackson parser http://jackson.codehaus.org/ It supports Pull Mechanism. You can have look at
http://wiki.fasterxml.com/JacksonInFiveMinutes
Solution 2:
I think this would help you a lot...
http://www.mediawiki.org/wiki/Extension_talk:External_Data/Archive_2012
read it.It would help you!!!
Post a Comment for "How Do I Query A Json File In Android Without Parsing The Entire File?"