How do I access a JSONObject subfield?

前端 未结 4 2075
自闭症患者
自闭症患者 2021-02-13 23:03

I feel dumb but I\'ve been looking around for this for a while. I\'m working with the google geocoder API and I need a bit of help with the json responses. Here is a JSONObje

4条回答
  •  野性不改
    2021-02-13 23:32

    With the json.org library for Java, you can only get at the individual properties of an object by first getting the parent JSONObject instance:

    JSONObject object = new JSONObject(json);
    JSONObject location = object.getJSONObject("location");
    double lng = location.getDouble("lng");
    double lat = location.getDouble("lat");
    

    If you're trying to access properties using "dotted notation", like this:

    JSONObject object = new JSONObject(json);
    double lng = object.getDouble("location.lng");
    double lat = object.getDouble("location.lat");
    

    then the json.org library isn't what you're looking for: It does not support this kind of access.


    As a side node, it makes no sense calling getString("location") on any part of the JSON given in your question. The value of the only property that is called "location" is another object with two properties called "lng" and "lat".

    If you want this "as a String", the closest thing is to call toString() on the JSONObject location (first code snippet in this answer) which will give you something like {"lng":-78.922026,"lat":36.0083185}.

提交回复
热议问题