一、JSONObject和JSONArray的数据表现形式 JSONObject的数据是用 { } 来表示的: 例如:{"name":"zhang","passWord":"123"} jsONArray,顾名思义是由JS
一、JSONObject和JSONArray的数据表现形式
JSONObject的数据是用 { } 来表示的:
例如:{"name":"zhang","passWord":"123"}
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"}
System.out.println(JSONArray.parseArray("[{\"zhang\":\"123\",\"zhou\":\"546\"},{\"hang\":\"21\"},{\"zang\":\"888\"}]"));
结果:[{"zhang":"123","zhou":"546"},{"hang":"21"},{"zang":"888"}]
来源地址:https://blog.csdn.net/weixin_50622525/article/details/130108239
--结束END--
本文标题: JSONObject与JSONArray的区别和常见转换
本文链接: https://lsjlt.com/news/391120.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-01
2024-04-03
2024-04-03
2024-01-21
2024-01-21
2024-01-21
2024-01-21
2023-12-23
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0