Json in Android and Gson
Android has good support for Json with the package org.json containing JSONArray, JSONObject, JSONStringer, JSONTokener.
Gson, an open source library, has made Json related work in Android incredibly easy. Serializing a complex object is down to two lines of code with Gson.
Gson is a good example of excellent open source project. It is highly functional, robust, simple to use, well documented.