JSON-简单。修改和使用复杂对象
我正在使用 JSON-simple 库来解析 Json 格式。如何使用或修改 JSONArray 的某些内容?例如,考虑以下 json,
"Place": [
{
"name": "owner 1"
},
{
"name": "owner 2"
}
],
"branch": [
{
"name": "sucursal",
"employe": [
],
"clients": [
]
},
我需要添加一些客户端并在将来修改它们。如何实现这一目标?
I am using the JSON-simple library to parse the Json format. How can I use or modify something to a JSONArray? For e.g. consider the following json
"Place": [
{
"name": "owner 1"
},
{
"name": "owner 2"
}
],
"branch": [
{
"name": "sucursal",
"employe": [
],
"clients": [
]
},
I need to add some clients and in the future modify them. How to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需以相同的格式创建一个 pojo 类即可。
并使用对象映射器中的 writeValueAsString() 将其转换为 json。
Simply create a pojo class in the same format.
and use writeValueAsString() from your object mapper to convet it to json.