配置文件INI? XML?其他?

时间:2016-12-19 20:00:43

标签: c# xml function ini

我目前在学区工作,我们正在尝试为我们的工具包创建一个C#exe。我们是C#的新手,正在学习它,但由于其灵活性,我想使用它。 C#工具包将用于自动设置具有我们选择的设置,程序,Regedit更改和首选项的新计算机或重新映像的计算机。

我们有一个工作版本,我们在powershell中硬编码,我们将转移到c#。

我们目前的问题是如何使用设置/配置文件(如ini或xml)从中提取通用信息并填充我们的函数和变量。这样我们就可以创建我们可以选择并运行的通用配置文件。例如:

[Server]
IP=172.1.0.10
Port=9999
PathToCSV=\\c:\Files.csv
[Client]
RestartComputerAfterScript=1
Install.Browser.Firefox=1
Install.Browser.Chrome=1
Install.Java=0
Install.PrinterLogic=1
SysConfig.TempLoc=d:\TEMP

这个ini文件将从我们的C#GUI中选择并填充:

  1. 使用值1
  2. 运行脚本后,计算机将重新启动
  3. Firefox将使用值1
  4. 安装
  5. 使用值0等安装Java
  6. 我们最终还会尝试传递其他变量,如注册表路径和值等。

    有没有人建议我们如何使用INI或者有更好的建议来创建构建配置文件?

    资源我已经研究过了: INI: https://www.codeproject.com/Articles/1966/An-INI-file-handling-class-using-C

3 个答案:

答案 0 :(得分:3)

.Net Framework有一个ConfigurationManager class,专为此目的而设计..

摘录:

XML

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <startup> 
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  </startup>
  <appSettings>
    <add key="Setting1" value="May 5, 2014"/>
    <add key="Setting2" value="May 6, 2014"/>
  </appSettings>
</configuration>

代码:

using System;
using System.Configuration;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            ReadAllSettings();
            ReadSetting("Setting1");
            ReadSetting("NotValid");
            AddUpdateAppSettings("NewSetting", "May 7, 2014");
            AddUpdateAppSettings("Setting1", "May 8, 2014");
            ReadAllSettings();
        }

        static void ReadAllSettings()
        {
            try
            {
                var appSettings = ConfigurationManager.AppSettings;

                if (appSettings.Count == 0)
                {
                    Console.WriteLine("AppSettings is empty.");
                }
                else
                {
                    foreach (var key in appSettings.AllKeys)
                    {
                        Console.WriteLine("Key: {0} Value: {1}", key, appSettings[key]);
                    }
                }
            }
            catch (ConfigurationErrorsException)
            {
                Console.WriteLine("Error reading app settings");
            }
        }

        static void ReadSetting(string key)
        {
            try
            {
                var appSettings = ConfigurationManager.AppSettings;
                string result = appSettings[key] ?? "Not Found";
                Console.WriteLine(result);
            }
            catch (ConfigurationErrorsException)
            {
                Console.WriteLine("Error reading app settings");
            }
        }

        static void AddUpdateAppSettings(string key, string value)
        {
            try
            {
                var configFile = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
                var settings = configFile.AppSettings.Settings;
                if (settings[key] == null)
                {
                    settings.Add(key, value);
                }
                else
                {
                    settings[key].Value = value;
                }
                configFile.Save(ConfigurationSaveMode.Modified);
                ConfigurationManager.RefreshSection(configFile.AppSettings.SectionInformation.Name);
            }
            catch (ConfigurationErrorsException)
            {
                Console.WriteLine("Error writing app settings");
            }
        }
    }
}

另一种选择是使用Settings

答案 1 :(得分:3)

如果您对其他文件格式持开放态度,我会使用JSON,因为它简单易用。

使用精彩图书馆Newtonsoft.Json

模态课程:

class Server
{
    public string IP { get; set; }
    public int Port { get; set; }
    public string PathToCSV { get; set; }
}

class Client
{
    public bool RestartComputerAfterScript { get; set; }
    public List<string> Install { get; set; }
    public string TempLoc { get; set; }
}

class Config
{
    public Server ServerConfig { get; set; }
    public Client ClientConfig { get; set; }
}

config.json:

{
    "ServerConfig": {
        "IP": "172.1.0.10",
        "Port": 9999,
        "PathToCSV": "C:\\Files.csv"
    },
    "ClientConfig": {
        "RestartComputerAfterScript": true,
        "Install": [
            "Firefox",
            "Chrome",
            "PrinterLogic"
        ],
        "TempLoc": "D:\\TEMP"
    }
}

从磁盘读取文件:

public static Config Read(string path)
{
    return JsonConvert.DeserializeObject<Config>(System.IO.File.ReadAllText(path));
}

保存配置文件:

public static void Write(string path, Config config)
{
    System.IO.File.WriteAllText(path, JsonConvert.SerializeObject(config, Formatting.Indented));
}

答案 2 :(得分:0)

我个人更喜欢在XML中使用我的配置,或者由于一致性而在JSON中使用Web应用程序 INI格式提供的一件事是它对非技术人员也是可读的。

然而,如果您对使用INI格式感兴趣,我可以建议您试用我的INI library。它可以简化处理INI文件的任务 另外我建议你看看解析和映射功能,简而言之,它们可以让你将“0”值映射为“false”,将“1”值映射为“true”然后你可以检索这些值。 INI键中的布尔类型。请参阅以下示例:

IniFile ini = new IniFile();
ini.Load(@"C:\Files\Sample.ini");

ini.ValueMappings.Add("0", false);
ini.ValueMappings.Add("1", true);

IniSection section = ini.Sections["Client"];

bool installChrome;
section.Keys["Install.Browser.Chrome"].TryParseValue(out installChrome);

bool installJava;
section.Keys["Install.Java"].TryParseValue(out installJava);

Console.WriteLine(installChrome);
Console.WriteLine(installJava);