json、map互转
首先,json转map
方法一:
JSONObject jsonObject = new JSONObject(s);
Map<String,Object> map= new HashMap<String,Object>();
Iterator it = jsonObject.keys();
// 遍历jsonObject数据,添加到Map对象
while (it.hasNext())
{
String key = String.valueOf(it.next());
String value = (String) jsonObject.get(key);
map.put(key, value);
}
return map;
方法三:
JSONObject jasonObject = JSONObject.fromObject(str);
Map<String, Object> map2 = (Map) jasonObject;
但此方法可能不适用, 百度的,出过问题,做个记录。
map转json
JSONObject jsonObject = JSONObject.fromMap(map);
关于jsonArray,留个示例:
public CarDataResultList<CarIntroEntity> parserJson(String paramString) throws Car273Exception { try { JSONObject jsonObj = new JSONObject(paramString); if (jsonObj.has("total")) { defCarIntroList.total = jsonObj.getInt("total"); } if (jsonObj.has("info")) { JSONArray infoArray = jsonObj.getJSONArray("info"); for (int i = 0; i < infoArray.length(); i++) { CarIntroEntity carIntroEntity = new CarIntroEntity(); JSONObject json = infoArray.getJSONObject(i); if (json.has("id")) { carIntroEntity.setId(json.getString("id")); }
.
.
.
defCarIntroList.infoList.add(carIntroEntity); } } } catch (JSONException e) { throw ce; }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。