JSONObject遍历获取键值

JSONObject遍历获取键值:

JSONObject hostObject = new JSONObject(str);
Iterator sIterator = hostObject.keys();
while(sIterator.hasNext()){
	// 获得key
	String key = sIterator.next();
	// 根据key获得value, value也可以是JSONObject,JSONArray,使用对应的参数接收即可
	String value = hostObject.getString(key);
	System.out.println("key: "+key+",value"+value);
}


你可能感兴趣的:(json)