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 @   我现在只想做个好人  阅读(5681)  评论(5编辑  收藏  举报
编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· 展开说说关于C#中ORM框架的用法!
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
点击右上角即可分享
微信分享提示