我的应用程序的Release文件夹中有一个settings.json文件。我要做的是更改它的值,而不是临时,永久地更改它。这意味着删除旧条目,写一个新条目并保存它。
这是JSON文件的格式
{ "Admins":["234567"], "ApiKey":"Text", "mainLog": "syslog.log", "UseSeparateProcesses": "false", "AutoStartAllBots": "true", "Bots": [ { "Username":"BOT USERNAME", "Password":"BOT PASSWORD", "DisplayName":"TestBot", "Backpack":"", "ChatResponse":"Hi there bro", "logFile": "TestBot.log", "BotControlClass": "Text", "MaximumTradeTime":180, "MaximumActionGap":30, "DisplayNamePrefix":"[AutomatedBot] ", "TradePollingInterval":800, "LogLevel":"Success", "AutoStart": "true" } ] }
假设我想更改密码值,而不是BOT PASSWORD,我希望它只是密码。我怎么做?
这是一种简单且便宜的方法(假设.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的解决方案完全充实的类。
dynamic