Java---使用fastjson对JSONObject中的指定字段重新赋值
fastjson
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
项目地址:https://gitcode.com/gh_mirrors/fastj/fastjson
免费下载资源
·
4. fastjson对JSONObject中的指定字段重新赋值
String bodyStr="new value" // 重新赋值的值
String tempStr=JSON.toJSONString(tempMessage); // 将原对象转化为 Json 字符串
// 再将该字符串转化为 fastjson 的JSONObject 对象 用于对指定字段赋值
JSONObject jsonObject=JSON.parseObject(tempStr);
jsonObject.put("body",bodyStr); // 最后将新值赋值到 JSONObject 对象中
参考: https://blog.csdn.net/matrix_google/article/details/80855471
GitHub 加速计划 / fastj / fastjson
25.69 K
6.51 K
下载
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
最近提交(Master分支:2 个月前 )
c942c834 - 1 年前
5bc4709b - 1 年前
更多推荐
已为社区贡献9条内容
所有评论(0)