Come scorrere su un oggetto JSONObject?


312

Uso una libreria JSON chiamata JSONObject(non mi dispiace cambiare se ne ho bisogno).

So eseguire l'iterazione JSONArrays, ma quando analizzo i dati JSON da Facebook non ottengo un array, solo un JSONObject, ma devo essere in grado di accedere a un elemento tramite il suo indice, ad esempio JSONObject[0]per ottenere il primo, e io non riesco a capire come farlo.

{
   "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
   }
}


Risposte:


594

Forse questo aiuterà:

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      
    }
}

20
Fai attenzione a tutti, jObject.keys () restituisce l'iteratore con ordine di indice inverso.
macio.

77
@ macio.Jun Tuttavia, l'ordine non ha importanza nelle mappe delle proprietà: le chiavi JSONObjectnon sono ordinate e la tua affermazione era un semplice riflesso di un'implementazione privata;)
caligari

6
Cosa usare quando abbiamo bisogno di tutti i tasti in sequenza?
appassionato del

11
Leggero cavillo: questo non porta a cercare due volte la chiave? Forse è meglio fare 'Object o = jObject.get (key)', quindi controllare il suo tipo e quindi usarlo, senza dover chiamare di nuovo get (key).
Tom,

1
@Tom For-Each loop sono utili quando si scorre su una raccolta:for (String key : keys)
caligari

86

per il mio caso, ho scoperto che names()funziona bene

for(int i = 0; i<jobject.names().length(); i++){
    Log.v(TAG, "key = " + jobject.names().getString(i) + " value = " + jobject.get(jobject.names().getString(i)));
}

1
Sebbene questo esempio non sia veramente compreso come Iteratingin Java, funziona abbastanza bene! Grazie.
Tim Visée,

57

Eviterò l'iteratore in quanto possono aggiungere / rimuovere oggetti durante l'iterazione, anche per l'uso del codice pulito per il ciclo. sarà semplicemente pulito e meno linee.

Uso di Java 8 e Lamda [Aggiornamento 4/2/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);
    });
}

Usando il vecchio modo [Aggiornamento 4/2/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);
    }
}

Risposta originale

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);
    }
}

5
Non hanno mai detto che stavano usando org.json.simple (che è una libreria di Google). L'org.json.JSONObject standard ti costringe a usare un iteratore, sfortunatamente.
Amalgovinus,

1
Mi hai salvato ma qui!
Lukuluba,

1
org.json.JSONObject non ha keySet ()
Ridhuvarshan,


38

Non riesco a credere che non esiste una soluzione più semplice e sicura dell'utilizzo di un iteratore in queste risposte ...

Il names ()metodo JSONObject restituisce una JSONArraydelle JSONObjectchiavi, quindi puoi semplicemente camminare attraverso il ciclo:

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

}

1
cos'è l'oggetto qui?
RCS

1
Lo è JSONObject. Qualcosa del genere JSONObject object = new JSONObject ("{\"key1\",\"value1\"}");. Ma non mettere JSON prime ad esso, aggiungere elementi in essa con put ()il metodo: 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");
}

jsonChildObject = iterator.next();dovrebbe probabilmente definire jsonChildObject, come JSONObject jsonChildObject = iterator.next();, no?
kontur

1
Mi piace questa soluzione, ma la dichiarazione Iterator<JSONObject>darà un avvertimento. Lo sostituirei con il generico <?>e farei un cast sulla chiamata a next(). Inoltre, userei getString("id")invece di get("id")salvare facendo un cast.
RTF

9

org.json.JSONObject ora ha un metodo keySet () che restituisce a Set<String>e può essere facilmente ripetuto con un for-each.

for(String key : jsonObject.keySet())

Penso che questa sia la soluzione più conveniente. Grazie per il consiglio :)
Yurii Rabeshko,

1
Potresti completare il tuo esempio?
abisso

6

Prima metti questo da qualche parte:

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

O se hai accesso a Java8, solo questo:

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

Quindi semplicemente scorrere le chiavi e i valori dell'oggetto:

for (String key : iteratorToIterable(object.keys())) {
    JSONObject entry = object.getJSONObject(key);
    // ...

Ho votato a favore, ma "String key: ...." non viene compilato e non sembra esserci un modo per evitare un avviso di cast non controllato sull'iteratore. Stupidi iteratori.
Amalgovinus,

2

Ho creato una piccola funzione ricorsiva che attraversa l'intero oggetto json e salva il percorso della chiave e il suo valore.

// 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();
    }
}


2

Abbiamo usato sotto il set di codice per scorrere i JSONObjectcampi

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

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

1

Una volta ho avuto un json che aveva ID che dovevano essere incrementati di uno dato che erano indicizzati 0 e che stava rompendo l'incremento automatico di Mysql.

Quindi per ogni oggetto che ho scritto questo codice - potrebbe essere utile a qualcuno:

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);
                    }
                }
            }
        }
    }

utilizzo:

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

questo può essere trasformato per funzionare anche per JSONArray come oggetto genitore


1

La maggior parte delle risposte qui sono per strutture JSON piatte, nel caso abbiate un JSON che potrebbe aver nidificato JSONArrays o Nested JSONObjects, sorge la vera complessità. Il frammento di codice seguente si occupa di tale requisito aziendale. Prende una mappa hash e JSON gerarchica con entrambi JSONArrays nidificati e JSONObjects e aggiorna JSON con i dati nella mappa hash

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));
            }
        }
    });

}

È necessario notare qui che il tipo restituito è nullo, ma gli oggetti SICE vengono passati come riferimento in quanto questa modifica viene rieletta al chiamante.


0

Di seguito il codice ha funzionato bene per me. Ti prego, aiutami se è possibile eseguire la messa a punto. Ciò ottiene tutte le chiavi anche dagli oggetti JSON nidificati.

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;
}

-1

Questa è un'altra soluzione funzionante al problema:

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();
    }
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.