.NET Core简单读取json配置文件
程序员文章站
2024-02-03 10:41:04
背景
目前发现网上的 .net core 读取 json 格式的配置文件有点麻烦,自己想搞个简单点的。
.net core 目前的主流形式是采用 json 格式...
背景
目前发现网上的 .net core 读取 json 格式的配置文件有点麻烦,自己想搞个简单点的。
.net core 目前的主流形式是采用 json 格式来存储配置文件信息,跟之前的诸如 app.config 和 web.config 等 xml 形式的配置文件有所区别。
json 文件 demo
appsettings.json:
{ "name": "wen", "age": 26, "family": { "mother": { "name": "娘", "age": 55 }, "father": { "name": "爹", "age": 56 } } }
nuget 类库引用
需要 nuget 两个类库:
①microsoft.extensions.configuration
②microsoft.extensions.configuration.json
核心代码:
program.cs:
using system; using system.io; using microsoft.extensions.configuration; namespace demo { class program { static void main(string[] args) { //添加 json 文件路径 var builder = new configurationbuilder().setbasepath(directory.getcurrentdirectory()).addjsonfile("appsettings.json"); //创建配置根对象 var configurationroot = builder.build(); //取配置根下的 name 部分 var namesection = configurationroot.getsection("name"); //取配置根下的 family 部分 var familysection = configurationroot.getsection("family"); //取 family 部分下的 mother 部分下的 name 部分 var mothernamesection = familysection.getsection("mother").getsection("name"); //取 family 部分下的 father 部分下的 age 部分 var fatheragesection = familysection.getsection("father").getsection("age"); //value 为文本值 console.writeline($"name: {namesection.value}"); console.writeline($"mothername: {mothernamesection.value}"); console.writeline($"fatherage: {fatheragesection.value}"); console.read(); } } }
测试结果:
直观的关系对比图,可以看到核心就是 getsection() 方法,每继续往下一个层次获取就再次调用 getsection() 方法:
备注
别忘了设置 json 文件的属性哦:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
.NET Core简单读取json配置文件
-
.net core An assembly specified in the application dependencied mainfest<****.json>was not found解决办法
-
.Net Core 读取配置文件 appsettings.json
-
.NET Core简单注入
-
.net core2.0之将json文件并转化成类注入控制器使用
-
C#利用newtonsoft.json读取.so配置文件内容
-
.Net Core 简单定时任务框架封装
-
基于 .NET Core 的简单文件服务器
-
.NET Core读取配置文件方式详细总结
-
ASP.NET Core如何实现简单的静态网站滚动更新