Wie iteriere ich über ein JSONObject?

312

Ich verwende eine JSON-Bibliothek namens JSONObject(es macht mir nichts aus, zu wechseln, wenn ich muss).

Ich weiß, wie man iteriert JSONArrays, aber wenn ich JSON-Daten von Facebook analysiere, erhalte ich kein Array, nur ein JSONObject, aber ich muss in der Lage sein, über seinen Index auf ein Element zuzugreifen, z. B. JSONObject[0]um das erste zu erhalten, und ich Ich kann nicht herausfinden, wie es geht.

{
   "http://http://url.com/": {
      "id": "http://http://url.com//"
   },
   "http://url2.co/": {
      "id": "http://url2.com//",
      "shares": 16
   }
   ,
   "http://url3.com/": {
      "id": "http://url3.com//",
      "shares": 16
   }
}
Eric Hjalmarsson
quelle
Versuchen Sie dies: stackoverflow.com/a/56223923/10268067
Steve Moretz

Antworten:

594

Vielleicht hilft das:

JSONObject jsonObject = new JSONObject(contents.trim());
Iterator<String> keys = jsonObject.keys();

while(keys.hasNext()) {
    String key = keys.next();
    if (jsonObject.get(key) instanceof JSONObject) {
          // do something with jsonObject here      
    }
}
Rickey
quelle
20
Seien Sie vorsichtig, jObject.keys () gibt den Iterator mit umgekehrter Indexreihenfolge zurück.
Macio.Jun
77
@ macio.Jun Trotzdem spielt die Reihenfolge in Karten mit Eigenschaften keine Rolle: Die Schlüssel JSONObjectsind ungeordnet und Ihre Behauptung war eine einfache Widerspiegelung einer privaten Implementierung;)
Caligari
6
Was ist zu verwenden, wenn alle Schlüssel nacheinander benötigt werden?
scharf
11
Leichter Streit: Führt dies nicht dazu, dass die Schlüsselsuche zweimal durchgeführt wird? Vielleicht ist es besser, 'Object o = jObject.get (key)' zu machen, dann seinen Typ zu überprüfen und ihn dann zu verwenden, ohne get (key) erneut aufrufen zu müssen.
Tom
1
@ Tom For-Each-Schleifen sind nützlich, wenn Sie eine Sammlung for (String key : keys)
durchlaufen
86

Für meinen Fall fand ich es gut, die names()Arbeiten zu wiederholen

for(int i = 0; i<jobject.names().length(); i++){
    Log.v(TAG, "key = " + jobject.names().getString(i) + " value = " + jobject.get(jobject.names().getString(i)));
}
AssemblyX
quelle
1
Obwohl dieses Beispiel nicht wirklich wie Iteratingin Java verstanden wird, funktioniert es recht gut! Vielen Dank.
Tim Visée
56

Ich werde Iteratoren vermeiden, da sie während der Iteration Objekte hinzufügen / entfernen können, auch für die Verwendung von sauberem Code für die Schleife. Es wird einfach sauber sein und weniger Leitungen.

Verwenden von Java 8 und Lamda [Update 02.04.2019]

import org.json.JSONObject;

public static void printJsonObject(JSONObject jsonObj) {
    jsonObj.keySet().forEach(keyStr ->
    {
        Object keyvalue = jsonObj.get(keyStr);
        System.out.println("key: "+ keyStr + " value: " + keyvalue);

        //for nested objects iteration if required
        //if (keyvalue instanceof JSONObject)
        //    printJsonObject((JSONObject)keyvalue);
    });
}

Auf alte Weise [Update 02.04.2019]

import org.json.JSONObject;

public static void printJsonObject(JSONObject jsonObj) {
    for (String keyStr : jsonObj.keySet()) {
        Object keyvalue = jsonObj.get(keyStr);

        //Print key and value
        System.out.println("key: "+ keyStr + " value: " + keyvalue);

        //for nested objects iteration if required
        //if (keyvalue instanceof JSONObject)
        //    printJsonObject((JSONObject)keyvalue);
    }
}

Ursprüngliche Antwort

import org.json.simple.JSONObject;
public static void printJsonObject(JSONObject jsonObj) {
    for (Object key : jsonObj.keySet()) {
        //based on you key types
        String keyStr = (String)key;
        Object keyvalue = jsonObj.get(keyStr);

        //Print key and value
        System.out.println("key: "+ keyStr + " value: " + keyvalue);

        //for nested objects iteration if required
        if (keyvalue instanceof JSONObject)
            printJsonObject((JSONObject)keyvalue);
    }
}
maaz
quelle
5
Sie haben nie gesagt, dass sie org.json.simple (eine Google-Bibliothek) verwenden. Der Standard org.json.JSONObject zwingt Sie leider zur Verwendung eines Iterators.
Amalgovinus
1
Du hast meine aber hier gerettet!
Lukuluba
1
org.json.JSONObject hat kein keySet ()
Ridhuvarshan
38

Ich kann nicht glauben, dass es keine einfachere und sicherere Lösung gibt, als einen Iterator in diesen Antworten zu verwenden ...

Die JSONObject- names ()Methode gibt einen JSONArrayder JSONObjectSchlüssel zurück, sodass Sie ihn einfach in einer Schleife durchlaufen können:

JSONObject object = new JSONObject ();
JSONArray keys = object.names ();

for (int i = 0; i < keys.length (); ++i) {

   String key = keys.getString (i); // Here's your key
   String value = object.getString (key); // Here's your value

}
Acuna
quelle
1
Was ist Objekt hier?
RCS
1
Es ist JSONObject. So etwas wie JSONObject object = new JSONObject ("{\"key1\",\"value1\"}");. Aber setzen Sie kein rohes JSON ein, sondern fügen Sie Elemente mit der put ()Methode hinzu : object.put ("key1", "value1");.
Acuna
18
Iterator<JSONObject> iterator = jsonObject.values().iterator();

while (iterator.hasNext()) {
 jsonChildObject = iterator.next();

 // Do whatever you want with jsonChildObject 

  String id = (String) jsonChildObject.get("id");
}
Aviomaksim
quelle
jsonChildObject = iterator.next();sollte wohl definieren jsonChildObject, wie JSONObject jsonChildObject = iterator.next();nein?
Kontur
1
Ich mag diese Lösung, aber das Deklarieren Iterator<JSONObject>gibt eine Warnung. Ich würde es durch das Generikum ersetzen <?>und den Anruf an besetzen next(). Außerdem würde ich verwenden, getString("id")anstatt get("id")eine Besetzung zu speichern.
RTF
9

org.json.JSONObject verfügt jetzt über eine keySet () -Methode, die a zurückgibt Set<String>und leicht mit einem for-each durchlaufen werden kann.

for(String key : jsonObject.keySet())
Burrito
quelle
Ich denke, das ist die bequemste Lösung. Danke für den Rat :)
Yurii Rabeshko
1
Könnten Sie Ihr Beispiel vervollständigen?
Abgrund
6

Stellen Sie dies zuerst irgendwo hin:

private <T> Iterable<T> iteratorToIterable(final Iterator<T> iterator) {
    return new Iterable<T>() {
        @Override
        public Iterator<T> iterator() {
            return iterator;
        }
    };
}

Oder wenn Sie Zugriff auf Java8 haben, einfach Folgendes:

private <T> Iterable<T> iteratorToIterable(Iterator<T> iterator) {
    return () -> iterator;
}

Dann iterieren Sie einfach über die Schlüssel und Werte des Objekts:

for (String key : iteratorToIterable(object.keys())) {
    JSONObject entry = object.getJSONObject(key);
    // ...
Ebrahim Byagowi
quelle
Ich habe dafür gestimmt, aber "String key: ...." wird nicht kompiliert, und es scheint keine Möglichkeit zu geben, eine ungeprüfte Cast-Warnung auf dem Iterator zu vermeiden. Dumme Iteratoren.
Amalgovinus
2

Ich habe eine kleine rekursive Funktion erstellt, die das gesamte JSON-Objekt durchläuft und den Schlüsselpfad und seinen Wert speichert.

// My stored keys and values from the json object
HashMap<String,String> myKeyValues = new HashMap<String,String>();

// Used for constructing the path to the key in the json object
Stack<String> key_path = new Stack<String>();

// Recursive function that goes through a json object and stores 
// its key and values in the hashmap 
private void loadJson(JSONObject json){
    Iterator<?> json_keys = json.keys();

    while( json_keys.hasNext() ){
        String json_key = (String)json_keys.next();

        try{
            key_path.push(json_key);
            loadJson(json.getJSONObject(json_key));
       }catch (JSONException e){
           // Build the path to the key
           String key = "";
           for(String sub_key: key_path){
               key += sub_key+".";
           }
           key = key.substring(0,key.length()-1);

           System.out.println(key+": "+json.getString(json_key));
           key_path.pop();
           myKeyValues.put(key, json.getString(json_key));
        }
    }
    if(key_path.size() > 0){
        key_path.pop();
    }
}
Schädelbox
quelle
2

Wir haben den folgenden Codesatz verwendet, um JSONObjectFelder zu durchlaufen

Iterator iterator = jsonObject.entrySet().iterator();

while (iterator.hasNext())  {
        Entry<String, JsonElement> entry = (Entry<String, JsonElement>) iterator.next();
        processedJsonObject.add(entry.getKey(), entry.getValue());
}
Sanchi Girotra
quelle
1

Ich hatte einmal einen JSON mit IDs, die um eins erhöht werden mussten, da sie 0-indiziert waren und das automatische Inkrementieren von MySQL unterbrach.

Also für jedes Objekt habe ich diesen Code geschrieben - könnte für jemanden hilfreich sein:

public static void  incrementValue(JSONObject obj, List<String> keysToIncrementValue) {
        Set<String> keys = obj.keySet();
        for (String key : keys) {
            Object ob = obj.get(key);

            if (keysToIncrementValue.contains(key)) {
                obj.put(key, (Integer)obj.get(key) + 1);
            }

            if (ob instanceof JSONObject) {
                incrementValue((JSONObject) ob, keysToIncrementValue);
            }
            else if (ob instanceof JSONArray) {
                JSONArray arr = (JSONArray) ob;
                for (int i=0; i < arr.length(); i++) {
                    Object arrObj = arr.get(0);
                    if (arrObj instanceof JSONObject) {
                        incrementValue((JSONObject) arrObj, keysToIncrementValue);
                    }
                }
            }
        }
    }

Verwendungszweck:

JSONObject object = ....
incrementValue(object, Arrays.asList("id", "product_id", "category_id", "customer_id"));

Dies kann so transformiert werden, dass es auch für JSONArray als übergeordnetes Objekt funktioniert

Michail Michailidis
quelle
1

Die meisten Antworten beziehen sich auf flache JSON-Strukturen. Wenn Sie einen JSON haben, der möglicherweise verschachtelte JSONArrays oder verschachtelte JSONObjects enthält, entsteht die tatsächliche Komplexität. Das folgende Code-Snippet kümmert sich um eine solche Geschäftsanforderung. Es benötigt eine Hash-Map und hierarchisches JSON mit verschachtelten JSONArrays und JSONObjects und aktualisiert das JSON mit den Daten in der Hash-Map

public void updateData(JSONObject fullResponse, HashMap<String, String> mapToUpdate) {

    fullResponse.keySet().forEach(keyStr -> {
        Object keyvalue = fullResponse.get(keyStr);

        if (keyvalue instanceof JSONArray) {
            updateData(((JSONArray) keyvalue).getJSONObject(0), mapToUpdate);
        } else if (keyvalue instanceof JSONArray) {
            updateData((JSONObject) keyvalue, mapToUpdate);
        } else {
            // System.out.println("key: " + keyStr + " value: " + keyvalue);
            if (mapToUpdate.containsKey(keyStr)) {
                fullResponse.put(keyStr, mapToUpdate.get(keyStr));
            }
        }
    });

}

Sie müssen hier beachten, dass der Rückgabetyp ungültig ist, aber sice-Objekte als Referenz übergeben werden. Diese Änderung wird erneut an den Aufrufer ausgewählt.

Shekhar
quelle
0

Der folgende Code hat für mich gut funktioniert. Bitte helfen Sie mir, wenn eine Abstimmung durchgeführt werden kann. Dadurch werden alle Schlüssel auch von den verschachtelten JSON-Objekten abgerufen.

public static void main(String args[]) {
    String s = ""; // Sample JSON to be parsed

    JSONParser parser = new JSONParser();
    JSONObject obj = null;
    try {
        obj = (JSONObject) parser.parse(s);
        @SuppressWarnings("unchecked")
        List<String> parameterKeys = new ArrayList<String>(obj.keySet());
        List<String>  result = null;
        List<String> keys = new ArrayList<>();
        for (String str : parameterKeys) {
            keys.add(str);
            result = this.addNestedKeys(obj, keys, str);
        }
        System.out.println(result.toString());
    } catch (ParseException e) {
        e.printStackTrace();
    }
}
public static List<String> addNestedKeys(JSONObject obj, List<String> keys, String key) {
    if (isNestedJsonAnArray(obj.get(key))) {
        JSONArray array = (JSONArray) obj.get(key);
        for (int i = 0; i < array.length(); i++) {
            try {
                JSONObject arrayObj = (JSONObject) array.get(i);
                List<String> list = new ArrayList<>(arrayObj.keySet());
                for (String s : list) {
                    putNestedKeysToList(keys, key, s);
                    addNestedKeys(arrayObj, keys, s);
                }
            } catch (JSONException e) {
                LOG.error("", e);
            }
        }
    } else if (isNestedJsonAnObject(obj.get(key))) {
        JSONObject arrayObj = (JSONObject) obj.get(key);
        List<String> nestedKeys = new ArrayList<>(arrayObj.keySet());
        for (String s : nestedKeys) {
            putNestedKeysToList(keys, key, s);
            addNestedKeys(arrayObj, keys, s);
        }
    }
    return keys;
}

private static void putNestedKeysToList(List<String> keys, String key, String s) {
    if (!keys.contains(key + Constants.JSON_KEY_SPLITTER + s)) {
        keys.add(key + Constants.JSON_KEY_SPLITTER + s);
    }
}



private static boolean isNestedJsonAnObject(Object object) {
    boolean bool = false;
    if (object instanceof JSONObject) {
        bool = true;
    }
    return bool;
}

private static boolean isNestedJsonAnArray(Object object) {
    boolean bool = false;
    if (object instanceof JSONArray) {
        bool = true;
    }
    return bool;
}
Ramji Sridaran
quelle
-1

Dies ist eine weitere funktionierende Lösung für das Problem:

public void test (){

    Map<String, String> keyValueStore = new HasMap<>();
    Stack<String> keyPath = new Stack();
    JSONObject json = new JSONObject("thisYourJsonObject");
    keyValueStore = getAllXpathAndValueFromJsonObject(json, keyValueStore, keyPath);
    for(Map.Entry<String, String> map : keyValueStore.entrySet()) {
        System.out.println(map.getKey() + ":" + map.getValue());
    }   
}

public Map<String, String> getAllXpathAndValueFromJsonObject(JSONObject json, Map<String, String> keyValueStore, Stack<String> keyPath) {
    Set<String> jsonKeys = json.keySet();
    for (Object keyO : jsonKeys) {
        String key = (String) keyO;
        keyPath.push(key);
        Object object = json.get(key);

        if (object instanceof JSONObject) {
            getAllXpathAndValueFromJsonObject((JSONObject) object, keyValueStore, keyPath);
        }

        if (object instanceof JSONArray) {
            doJsonArray((JSONArray) object, keyPath, keyValueStore, json, key);
        }

        if (object instanceof String || object instanceof Boolean || object.equals(null)) {
            String keyStr = "";

            for (String keySub : keyPath) {
                keyStr += keySub + ".";
            }

            keyStr = keyStr.substring(0, keyStr.length() - 1);

            keyPath.pop();

            keyValueStore.put(keyStr, json.get(key).toString());
        }
    }

    if (keyPath.size() > 0) {
        keyPath.pop();
    }

    return keyValueStore;
}

public void doJsonArray(JSONArray object, Stack<String> keyPath, Map<String, String> keyValueStore, JSONObject json,
        String key) {
    JSONArray arr = (JSONArray) object;
    for (int i = 0; i < arr.length(); i++) {
        keyPath.push(Integer.toString(i));
        Object obj = arr.get(i);
        if (obj instanceof JSONObject) {
            getAllXpathAndValueFromJsonObject((JSONObject) obj, keyValueStore, keyPath);
        }

        if (obj instanceof JSONArray) {
            doJsonArray((JSONArray) obj, keyPath, keyValueStore, json, key);
        }

        if (obj instanceof String || obj instanceof Boolean || obj.equals(null)) {
            String keyStr = "";

            for (String keySub : keyPath) {
                keyStr += keySub + ".";
            }

            keyStr = keyStr.substring(0, keyStr.length() - 1);

            keyPath.pop();

            keyValueStore.put(keyStr , json.get(key).toString());
        }
    }
    if (keyPath.size() > 0) {
        keyPath.pop();
    }
}
Huy Thành Trương
quelle