Re: [android-developers] How to parse Json file (Which is output of http://maps.googleapis.com/maps/api/geocode/json.....)

2012-01-28 Thread Dhaval Varia
After Lots of trial i got following solution. I am writing full solution,with the intention that everyone can take benefit of it.and getting solution without wasting valuable time,like me. package com.example.Jsonparse; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io

Re: [android-developers] How to parse Json file (Which is output of http://maps.googleapis.com/maps/api/geocode/json.....)

2012-01-27 Thread Shubhangi
hello first of all let me tell u regarding ur track for JSON parsing and getting address using a web service is right.. now here I'm sending u code that how I am used to parse the JSON data.. All you have to do is check this specified URL and change the rest of the code according your requirements

[android-developers] How to parse Json file (Which is output of http://maps.googleapis.com/maps/api/geocode/json.....)

2012-01-27 Thread Dhaval Varia
Dear All I am using GEO-CODER for getting Address of place by Lat-Long. But some times, i get "Unable to parse output from server" . So i have decided to use following web service: http://maps.googleapis.com/maps/api/geocode/json?latlng=22.508507985602836,73.474991977022533&sensor=false SO m