将JSON OBJECT转换为JSON ARRAY

时间:2017-05-18 11:23:25

标签: java json

这是非常简单的但是有点蠢蠢欲动。帮助我解决这个问题。

我有一个json数据{" abc":" test"," bed":" cot","帮助":"我"}

我希望将上面的jsonObject转换为JSON ARRAY,如[{" abc":" test"," bed":" cot" "帮助":"我"}]

JSONObject obj= new JSONObject(str.toString());
Iterator x = obj.keys();
JSONArray jsonArray = new JSONArray();
Map<String, String> map = new HashMap<String, String>();

while (x.hasNext()) {
  for(int i=0;i<obj.length();i++) {
    LOG.info("=============");
    String key = (String) x.next();
    jsonArray.put(obj.get(key));
  }
}

我只获得价值观。请帮我解决这个问题。

2 个答案:

答案 0 :(得分:5)

直接将JsonObject即obj放入jsonArray

jsonArray.put(obj);
//result is [{ "abc":"test","bed":"cot","help":"me"}]

最终代码

JSONObject obj= new JSONObject(str);
JSONArray jsonArray = new JSONArray();
//simply put obj into jsonArray
jsonArray.put(obj);
//result is [{ "abc":"test","bed":"cot","help":"me"}]

答案 1 :(得分:0)

它对我有用。

JSONObject obj = new JSONObject(result.toString()); JSONArray arr = obj.getJSONArray(“value”);