在C#中拆分XML文件

时间:2013-09-07 14:22:37

标签: c# xml

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

这是我的代码:

      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();
               }

2 个答案:

答案 0 :(得分:1)

您应该在newDoc而不是doc中搜索消息ID:

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();
}

答案 1 :(得分: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");
}