1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| HashMapreMap =newHashMap();
try{
JSONObject jsonobject=newJSONObject(response);
Iterator i=jsonobject.keys();
while(i.hasNext()){
String key = (String) i.next();
String values=jsonobject.getString(key);
reMap.put(key,values);
}
}catch(JSONException e) {
e.printStackTrace();
}
|