Iterator<?> it = object.keys();
String aa2 = "";
String bb2 = null;
while (it.hasNext()) {// 遍历JSONObject
bb2 = (String) it.next().toString();
aa2 = aa2 + object.getString(bb2);
hashData.put(bb2, aa2);
}
String aa2 = "";
String bb2 = null;
while (it.hasNext()) {// 遍历JSONObject
bb2 = (String) it.next().toString();
aa2 = aa2 + object.getString(bb2);
hashData.put(bb2, aa2);
}