解析JSONObject为key-value

String params="";//json格式的字符串

JSONObject  data = JSONObject .fromObject(params);

Set<Map.Entry<String, Object>> entries = data.entrySet();

Iterator<Map.Entry<String, Object>> it = entries.iterator(); String param="";
while (it.hasNext()) {       Map.Entry<String, Object> next = it.next();       String key = next.getKey();       Object value = next.getValue();     param+=key+"="+value; } System.out.println(param);
上一篇:JSON 与 对象 、集合 之间的转换


下一篇:JSONObject的问题- 在用JSONObject传参到controller接收为空白和JSONArray添加json后转string不正确