gpt4 book ai didi

c# - 如何更新json中的特定值?

转载 作者:太空宇宙 更新时间:2023-11-03 17:25:04 25 4
gpt4 key购买 nike

我正在使用 newtonsoft json 库。我想在以下 json 中将 token “状态”的值从 false 更新为 true。我该怎么做?:

{
"type": "FeatureCollection",
"Status": false,
"crs": {
"type": "EPSG",
"properties": {
"code": 28992
}
}
}

最佳答案

可以反序列化,修改值再序列化

dynamic jsonObject = Newtonsoft.Json.JsonConvert.DeserializeObject(jsonString);
jsonObject.Status = true;
var modifiedJsonString = Newtonsoft.Json.JsonConvert.SerializeObject(jsonObject);

关于c# - 如何更新json中的特定值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19708889/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com