我正在开发 ac# 控制台应用程序,它有一个包含程序设置的 xml 配置文件。
我想在 xml 文件中添加注释,以显示可以使用<!--My Comment-->
. 出于某种原因,当我把它放进去时,就好像 C# 认为这是文件的结尾并且没有读取文件的其他部分,没有抛出错误并且程序没有停止响应它继续运行其余部分的代码。
下面是配置文件。
<?xml version="1.0" encoding="utf-8" ?>
<options>
<database>
<item key="server" value="localhost" />
<item key="database" value="emailserver" />
<item key="username" value="myusername" />
<item key="password" value="mypassword" />
<item key="port" value="3306" />
</database>
<EmailServer>
<item key="logFile" value="email_server.txt" />
<!--You can use fileCopy or database-->
<item key="logManageMode" value="fileCopy" />
<item key="ip_address" value="127.0.0.1" />
<item key="smtpPort" value="26" />
<item key="requireAuthentication" value="false" />
</EmailServer>
</options>
如果我不将该评论放入其中,它将读入整个文件。下面是读取 XML 文件的代码。
public Dictionary<string, string> readConfig(string sectionName, bool soapService=false, Dictionary<string, string> config=null)
{
Dictionary<string, string> newConfig = null;
if (config == null)
{
newConfig = new Dictionary<string, string>();
}
//Dictionary<string, string> config = new Dictionary<string, string>();
try
{
XmlDocument configXml = new XmlDocument();
string configPath = "";
if (soapService)
{
string applicationPath = HttpContext.Current.Server.MapPath(null);
configPath = Path.Combine(applicationPath, "config.xml");
configXml.Load(configPath);
}
else
{
configXml.Load("config.xml");
}
XmlNodeList options = configXml.SelectNodes(string.Format("/options/{0}", sectionName));
XmlNodeList parameters = configXml.GetElementsByTagName("item");
foreach (XmlNode option in options)
{
foreach (XmlNode setting in option)
{
string key = setting.Attributes["key"].Value;
string value = setting.Attributes["value"].Value;
if (config == null)
{
newConfig.Add(key, value);
}
else
{
config.Add(key, value);
}
}
}
}
catch (KeyNotFoundException ex)
{
Console.WriteLine("Config KeyNotFoundException: {0}", ex.Message);
}
catch (XmlException ex)
{
Console.WriteLine("Config XmlException: {0}", ex.Message);
}
catch (Exception ex)
{
Console.WriteLine("Config Exception: {0}", ex.Message);
Console.WriteLine("StackTrace: {0}", ex.StackTrace);
}
if (config == null)
{
return newConfig;
}
return config;
}
感谢您的任何帮助,您可以提供。