一、JSONObject和JSONArray的数据表现形式
1.JSONObject的数据是用 { } 来表示的:
例如:{"name":"zhang","password":"123"}
2.JSONArray,顾名思义是由JSONObject构成的数组,用 [ { } , { } , ...... , { } ] 来表示:
例如:[{"name":"zhang","password":"123"},{"name":"hang","password":"456"},{"id":"888"},{"token":"aaa"}]
表示包含了4个JSONObject的JSONArray
最明显的区别就是最外面一个用的 { },一个则用的[ ]
二、JSONObject和JSONArray相互转换
JSONObject jsonObject = jsonArray.getJSONObject(i);
jsonArray.add(jsonObject);
三、将Map转换成JSONObject或添加到JSONArray
JSONObject jsonObject = JSONObject.parseObject(JSONObject.toJSONString(map)); jsonArray.add(map);
四、将List转换成JSONArray
JSONArray jsonArray = JSONArray.parseArray(JSON.toJSONString(list));
五、字符串转JSONObject和JSONArray
System.out.println(JSONObject.parseObject("{\"zhang\":\"123\",\"zhou\":\"546\"}"));
结果:{"zhang":"123","zhou":"546"}文章来源:https://www.toymoban.com/news/detail-672672.html
System.out.println(JSONArray.parseArray("[{\"zhang\":\"123\",\"zhou\":\"546\"},{\"hang\":\"21\"},{\"zang\":\"888\"}]"));
结果:[{"zhang":"123","zhou":"546"},{"hang":"21"},{"zang":"888"}]文章来源地址https://www.toymoban.com/news/detail-672672.html
到了这里,关于JSONObject与JSONArray的区别和常见转换的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!