I know of some JSON libs around and I\'m currently looking into Google-JSON but all I want to achieve is something simple and I want to know what you would suggest.
I wa
I recommend this library: http://www.json.org/java/
You simply have to create a JSONObject from string, and get the name proprety.
JSONObject JsonObj = JSONObject( InputStr );
String MapTitle = JsonObj.getString("title");
Download the source, and import it into your project: http://www.json.org/java/json.zip