0

I want to extract the location and its latlng from a JSON string returned by the MapQuest Geocoder Api in java.

Shakeer Mirza
  • 5,054
  • 2
  • 18
  • 41
Nelson
  • 89
  • 1
  • 1
  • 6
  • I use org.json as mentioned [here](http://stackoverflow.com/questions/2591098/how-to-parse-json-in-java). – MQBrian Dec 06 '16 at 16:19

1 Answers1

0

Convert the JSON response to an Object using Jakson and get the latlng from the object.

JSON to Java Object tutorial might help.