C# 读取Json配置文件
Posted qhbm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 读取Json配置文件相关的知识,希望对你有一定的参考价值。
今天需要用到读取Json配置文件的helper 结果竟然没找到合适的 微软自己有一个 不过不支持.Net fw 4.0
于是自己在NewTonSoft.Json的基础上 加了点小小的封装 没做异常处理 后续更新会来更博
1 public class JsonConfigHelper 2 { 3 private JObject jObject = null; 4 public string this[string key] 5 { 6 get 7 { 8 string str = ""; 9 if (jObject != null) 10 { 11 str = GetValue(key); 12 } 13 return str; 14 } 15 } 16 public JsonConfigHelper(string path) 17 { 18 jObject = new JObject(); 19 using (System.IO.StreamReader file = System.IO.File.OpenText(path)) 20 { 21 using (JsonTextReader reader = new JsonTextReader(file)) 22 { 23 jObject = JObject.Load(reader); 24 } 25 }; 26 } 27 public T GetValue<T>(string key) where T : class 28 { 29 return JsonConvert.DeserializeObject<T>(jObject.SelectToken(key).ToString()); 30 } 31 public string GetValue(string key) 32 { 33 return Regex.Replace((jObject.SelectToken(key).ToString()), @"s", ""); 34 } 35 }
以上是关于C# 读取Json配置文件的主要内容,如果未能解决你的问题,请参考以下文章
如何为 XSLT 代码片段配置 CruiseControl 的 C# 版本?
菜鸟入门ASP.NET Core5:命令行配置Json文件配置Bind读取配置到C#实例在Core Mvc中使用Options