1

我有一个 XML 文件,它在一个大文件中包含多条消息,我的目标是将文件拆分为每条消息的单个 xml 文件,我有 ac# 代码,它只获取消息的第一个实例。你能告诉我我在这里缺少什么吗:

这是我的代码:

      string strSeq;
      string strFileName;
      XDocument doc = XDocument.Load(@"C:\XMl\MR.xml");
      var newDocs = doc.Descendants("Message")
               .Select(d => new XDocument(new XElement("FileDump", d)));
             foreach (var newDoc in newDocs)
              {
               strSeq = XDocument.Load(@"C:\XMl\MR.xml").XPathSelectElement
               "//FileDump/Message/MsgID").Value;           

                strFileName = "MR_" + strSeq + ".xml";
                newDoc.Save(Console.Out); Console.WriteLine();
                newDoc.Save(@"C:\xml\MR\Tst\" + strFileName);
                Console.WriteLine();
               }
4

2 回答 2

1

您应该在其中搜索消息 IDnewDoc而不是doc

foreach (var newDoc in newDocs)
{
    strSeq = newDoc.XPathSelectElement("//FileDump/Message/MsgID").Value;           

    strFileName = "MR_" + strSeq + ".xml";
    newDoc.Save(Console.Out); Console.WriteLine();
    newDoc.Save(@"C:\xml\MR\Tst\" + strFileName);
    Console.WriteLine();
}
于 2013-09-07T14:26:19.457 回答
0

尝试,

string path = @"C:\xml\MR\Tst\MR_";

XElement root = XElement.Load(file);
foreach(XElement message in root.Descendants("Message"))
{
    string id = message.Element("MsgID").Value;
    message.Save(path + id + ".xml");
}
于 2013-09-07T15:44:55.027 回答