C# Windows Service - 如何从 ini 文件或 app.config 读取?



我有一个Windows轮询服务每10分钟发送一封自动电子邮件。我使用Thread.Sleep(new TimeSpan(0, 10, 0));使线程休眠 10 分钟,这是现在硬编码的。

为了避免硬编码,我尝试了app.config但没有成功。我想将硬编码移动到一些.ini文件中。如何从 C# Windows 服务读取.ini文件。

我尝试使用以下代码从我的Windows服务中读取:

string pollingInterval = (string)new AppSettingsReader().GetValue("PollingInterval", typeof(string));

给出以下错误:

Configuration system failed to initialize

app.config

是比INI文件更好的解决方案。

您的app.config文件如下所示:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
.......
<appSettings>
<add key="TimerInterval" value="10" />
</appSettings>
.......
</configuration>

你读它像:

int timerInterval = Convert.ToInt32(ConfigurationManager.AppSettings["TimerInterval"]);

您需要导入命名空间using System.Configuration;并添加对系统配置dll的引用。

使用 App.config 非常简单

string interval = ConfigurationManager.AppSettings["interval"];
TimeSpan t;
TimeSpan.TryParseExact(interval, @"h:m:s", CultureInfo.InvariantCulture, out t);

(不要忘记添加System.Configuration程序集和using System.Configuration+System.Globalization的引用(

您的应用程序配置:

<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="interval" value="00:10:00" />
</appSettings>
</configuration>

相关内容

  • 没有找到相关文章

最新更新