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     }

 

posted @ 2018-07-25 18:32  我现在只想做个好人  阅读(5664)  评论(5编辑  收藏  举报