如何从AddressComponent获取formmated_address

时间:2017-06-13 02:53:05

标签: java android json parsing

我试图从谷歌地图api解析这个JSON对象,从中获取格式化地址我该怎么办?

enter image description here

1 个答案:

答案 0 :(得分:0)

试试这个,

try {
    JSONObject obj=new JSONObject(response);
    JSONObject obj_result=obj.getJSONObject("result");
    String formatted_address=obj_result.getString("formatted_address");
} catch (JSONException e) {
    e.printStackTrace();
}