I am looking to use a streaming json parser in an Android application, and I am wondering whether to use gson or the android.util.jsonreader library. Assume licensing and version compatibility are not a problem, and I should prefer:
- I process several MB of data.
- JSON is mainly composed of compressed strings, so I don't need an Object to JSON mapping.
source
share