Parse JSON object with string and value only

2019-01-08 11:11发布

I have problem when trying to parse with minimum value to map in Android.

There some sample JSON format with more information ex:

[{id:"1", name:"sql"},{id:"2",name:"android"},{id:"3",name:"mvc"}]

This that example most common to use and easy to use just use getString("id") or getValue("name").

But how do I parse to map using this JSON format with just only string and value minimum format to java map collection using looping. And because the string json will always different one with another. ex:

{"1":"sql", "2":"android", "3":"mvc"}

Thank

2条回答
祖国的老花朵
2楼-- · 2019-01-08 11:19

You need to get a list of all the keys, loop over them and add them to your map as shown in the example below:

    String s = "{menu:{\"1\":\"sql\", \"2\":\"android\", \"3\":\"mvc\"}}";
    JSONObject jObject  = new JSONObject(s);
    JSONObject  menu = jObject.getJSONObject("menu");

    Map<String,String> map = new HashMap<String,String>();
    Iterator iter = menu.keys();
    while(iter.hasNext()){
        String key = (String)iter.next();
        String value = menu.getString(key);
        map.put(key,value);
    }
查看更多
再贱就再见
3楼-- · 2019-01-08 11:19

My pseudocode example will be as follows:

JSONArray jsonArray = "[{id:\"1\", name:\"sql\"},{id:\"2\",name:\"android\"},{id:\"3\",name:\"mvc\"}]";
JSON newJson = new JSON();

for (each json in jsonArray) {
    String id = json.get("id");
    String name = json.get("name");

    newJson.put(id, name);
}

return newJson;
查看更多
登录 后发表回答