I need help with parsing json string in Java Android Appl.
Text of JSON file:
{\"data\":{\"columns\":[\"location_id\",\"name\",\"description\",\"lati
If you mean to navigate easily the Json Tree, you can use JSON Path, that is query system, similar to XPath to XML, that you can use to pick some elements in a json tree using text expressions.
http://code.google.com/p/json-path/ That's a good implementation
If you just mean that you want to parse that JSon you can use Gson from google (that is compatible with Android I guess).