简体   繁体   中英

org.json.JSONException: No value for Name JSON extraction error

I am getting this error when I try to get the value for "Name" out of the following JSON:

{
  "edges": [
    {
      "node": {
        "Name": "Sunday River",
        "Latitude": 44.4672,
        "Longitude": 70.8472
      }
    },
    {
      "node": {
        "Name": "Sugarloaf Mountain",
        "Latitude": 45.0314,
        "Longitude": 70.3131
      }
    }
  ]
}

This is the snippet of code I am using to try and access these values, but I am just testing getting "Name" for now:

String[] nodes = stringBuilder.toString().split("edges");
nodes[1] = "{" + "\"" + "edges" + nodes[1];
String s = nodes[1].substring(0,nodes[1].length()-3);
Log.d(TAG, s);
JSONObject json = new JSONObject(s);
JSONArray jsonArray = json.getJSONArray("edges");
ArrayList<String> allNames = new ArrayList<String>();
ArrayList<String> allLats = new ArrayList<String>();
ArrayList<String> allLongs = new ArrayList<String>();
for (int i=0; i<jsonArray.length(); i++) {
    JSONObject node = jsonArray.getJSONObject(i);
    Log.d(TAG, node.toString(1));

    String name = node.getString("Name");
    Log.d(TAG, name);

}

My output looks like this:

{"edges":[{"node":{"Name":"Sunday River","Latitude":44.4672,"Longitude":70.8472}},{"node":{"Name":"Sugarloaf Mountain","Latitude":45.0314,"Longitude":70.3131}}]}}
{
    "node": {
        "Name": "Sunday River",
        "Latitude": 44.4672,
        "Longitude": 70.8472
    }
}
org.json.JSONException: No value for Name

I understand that I could use optString and not get the error, but that will not give me the data stored in each node.

Here is a version that works with your unaltered JSON:

public static void main(String... args)
{
    String json = "{\"data\":{\"viewer\":{\"allMountains\":{\"edges\":[{\"node\":{\"Name\":\"Sunday River\",\"Latitude\":44.4672,\"Longitude\":70.8472}},{\"node\":{\"Name\":\"Sugarloaf Mountain\",\"Latitude\":45.0314,\"Longitude\":70.3131}}]}}}}";

    JSONObject obj = new JSONObject(json);

    JSONObject data = obj.getJSONObject("data");
    JSONObject viewer = data.getJSONObject("viewer");
    JSONObject allMountains = viewer.getJSONObject("allMountains");

    // 'edges' is an array
    JSONArray edges = allMountains.getJSONArray("edges");

    for (Object edge : edges) {
        // each of the elements of the 'edge' array are objects
        // with one property named 'node', so we need to extract that
        JSONObject node = ((JSONObject) edge).getJSONObject("node");

        // then we can access the 'node' object's 'Name' property
        System.out.println(node.getString("Name"));
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM