tnblog
首页
视频
资源
登录

.net core 类库 读取配置文件

6529人阅读 2021/7/23 13:04 总访问:60660 评论:0 收藏:0 手机
分类: .net core

如果非类库的话是可以直接读取的,但是类库里面已经不自带读取配置文件的方法了,
需要引用NuGet包,Microsoft.Extensions.Configuration.json才能读取配置文件

1.先引用NuGet包

  1. Microsoft.Extensions.Configuration.Json

2.写入数据到appsettings.json配置文件中

  1. "Redis": {
  2.     "Default": {
  3.       "Connection""127.0.0.1:6379",
  4.       "InstanceName""local",
  5.       "DefaultDB"8
  6.     }
  7.   }

3.下面就是使用的方法

  1.         private static IConfiguration _configuration;
  2.         static ConfigHelper()
  3.         {
  4.             //在当前目录或者根目录中寻找appsettings.json文件
  5.             var fileName = "appsettings.json";
  6.             var directory = AppContext.BaseDirectory;
  7.             directory = directory.Replace("\\""/");
  8.             var filePath = $"{directory}/{fileName}";
  9.             if (!File.Exists(filePath))
  10.             {
  11.                 var length = directory.IndexOf("/bin");
  12.                 filePath = $"{directory.Substring(0, length)}/{fileName}";
  13.             }
  14.             var builder = new ConfigurationBuilder()
  15.                 .AddJsonFile(filePath, falsetrue);
  16.             _configuration = builder.Build();
  17.         }
  18.         /// <summary>
  19.         /// 读取配置文件
  20.         /// </summary>
  21.         /// <param name="key"></param>
  22.         /// <returns></returns>
  23.         public static IConfigurationSection GetSection(string key)
  24.         {
  25.             return _configuration.GetSection(key);
  26.         }
  27.         /// <summary>
  28.         /// 读取配置文件的值
  29.         /// </summary>
  30.         /// <param name="key"></param>
  31.         /// <returns></returns>
  32.         public static string GetSectionValue(string key)
  33.         {
  34.             return _configuration.GetSection(key).Value;
  35.         }
  36.         /// <summary>
  37.                 /// 读取配置文件的值
  38.                 /// </summary>
  39.                 /// <param name="key">这里表示配置文件中的Redis</param>
  40.                 /// <param name="key1">表示Connection...等三级目录下的文件</param>
  41.                 /// <returns></returns>
  42.                 public static string GetSectionValue(string key,string key1)
  43.                 {
  44.                     return _configuration.GetSection(key).GetSection(key1).Value;
  45.                 }


评价

net core 使用 EF Code First

下面这些内容很老了看这篇:https://www.tnblog.net/aojiancc2/article/details/5365 项目使用多层,把数据库访问...

.net mvc分部页,.net core分部页

.net分部页的三种方式第一种:@Html.Partial(&quot;_分部页&quot;)第二种:@{ Html.RenderPartial(&quot;分部页&quot;);}...

StackExchange.Redis操作redis(net core支持)

官方git开源地址https://github.com/StackExchange/StackExchange.Redis官方文档在docs里边都是官方的文档通过nuget命令下...

.net core 使用session

tip:net core 2.2后可以直接启用session了,不用在自己添加一次session依赖,本身就添加了使用nuget添加引用Microsoft.AspN...

通俗易懂,什么是.net?什么是.net Framework?什么是.net core?

朋友圈@蓝羽 看到一篇文章写的太详细太通俗了,搬过来细细看完,保证你对.NET有个新的认识理解原文地址:https://www.cnblo...

asp.net core2.0 依赖注入 AddTransient与AddScoped的区别

asp.net core主要提供了三种依赖注入的方式其中AddTransient与AddSingleton比较好区别AddTransient瞬时模式:每次都获取一...

.net core 使用 Kestrel

Kestrel介绍 Kestrel是一个基于libuv的跨平台web服务器 在.net core项目中就可以不一定要发布在iis下面了Kestrel体验可以使...

net core中使用cookie

net core中可以使用传统的cookie也可以使用加密的cookieNET CORE中使用传统cookie设置:HttpContext.Response.Cookies.Appe...

net core项目结构简单分析

一:wwwrootwwwroot用于存放网站的静态资源,例如css,js,图片与相关的前端插件等lib主要是第三方的插件,例如微软默认引用...

net core使用EF之DB First

一.新建一个.net core的MVC项目新建好项目后,不能像以前一样直接在新建项中添加ef了,需要用命令在添加ef的依赖二.使用Nug...

.net core使用requestresponse下载文件下载excel等

使用request获取内容net core中request没有直接的索引方法,需要点里边的Query,或者formstringbase64=Request.Form[&quot;f...

iframe自适应高度与配合net core使用

去掉iframe边框frameborder=&quot;0&quot;去掉滚动条scrolling=&quot;no&quot;iframe 自适应高度如果内容是固定的,那么就...

net core启动报错Unable to configure HTTPS endpoint. No server certificate was specified

这是因为net core2.1默认使用的https,如果使用Kestrel web服务器的话没有安装证书就会报这个错其实仔细看他的错误提示,其...

net core中使用url编码与解码操作

net core中暂时还没有以前asp.net与mvc中的server对象。获取url的编码与解码操作不能使用以前的server对象来获取。使用的是...

下载net core

官方下载地址:https://dotnet.microsoft.com/download 进来之后就可以看到最新的下载版本可以直接点击下载,也可以下载其...

net core使用依赖注入来装载EF的上下文对象

妹子情人节快乐~.net core中用了不少的依赖注入,官方文档中也推荐使用。这样使用依赖注入来管理ef对象,还是比较科学,比如...
新手码农
排名
43
文章
7
粉丝
1
评论
2
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术