将 XML 读取到字典

本文关键字:字典 读取 XML | 更新日期: 2023-09-27 17:56:56

我知道这个问题已经被问过很多次了,但是尽管尝试了其他类似问题的几个建议,但我仍然无法解决我的问题。

现在我转而问,希望得到答案。

我有这个 XMl 文件:

<?xml version="1.0" encoding="utf-8"?>
    <WebCommands>
        <WebCommand>
            <FullCommand>@ 05c9fe42-8d89-401d-a9a5-2d82af58e16f This is a test from WebCommands!</FullCommand>
            <TimeStamp>18.06.2015 02:56:22</TimeStamp>
        </WebCommand>
    </WebCommands>

我需要将FullCommand和TimeStamp添加到我的字典中

Dictionary<DateTime, string> commands = new Dictionary<DateTime, string>();

如何:
1. 将 FullCommand 和 TimeStamp 添加到字典中?
2. 将时间戳字符串转换为正确的日期时间?

将 XML 读取到字典

  1. 将 FullCommand 和 TimeStamp 添加到字典中?
var commands = new Dictionary<DateTime, string>();
XDocument xDoc = XDocument.Load("filename.xml");            
foreach (XElement xCommand in xDoc.Root.Elements())
{
    commands.Add(
        DateTime.Parse(xCommand.Element("TimeStamp").Value, CultureInfo.CurrentCulture),
        xCommand.Element("FullCommand").Value);
}
  1. 将时间戳字符串转换为正确的日期时间
DateTime.Parse(xCommand.Element("TimeStamp").Value, CultureInfo.CurrentCulture)

解析到DateTime特定于区域性的操作。确保使用正确的区域性,以防CultureInfo.CurrentCulture不可行。