这是一种简单且便宜的方法(假设.NET 4.0及更高版本):
string json = File.ReadAllText("settings.json");dynamic jsonObj = Newtonsoft.Json.JsonConvert.DeserializeObject(json);jsonObj["Bots"][0]["Password"] = "new password";string output = Newtonsoft.Json.JsonConvert.SerializeObject(jsonObj, Newtonsoft.Json.Formatting.Indented);File.WriteAllText("settings.json", output);
使用
dynamic可使您非常简单地在json对象和数组中建立索引。但是,您确实在编译时检查中迷失了方向。为了快速而肮脏,这真的很好,但是对于生产代码,您可能想要按照@
gitesh.tyagi的解决方案完全充实的类。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)