使用LINQ问题解析XML

时间:2015-02-05 19:58:22

标签: c# xml linq

示例XML:

<Response xmlns="http://tempuri.org/">
  <Result xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <a:string>18c03787-9222-4c9b-8f39-44c2b39c788e</a:string>
    <a:string>774d38d2-a350-4711-8674-b69404283448</a:string>
  </Result>
</Response>

当我试图解析这段代码时,我得到了null,即:

XNamespace temp = "http://tempuri.org/";
XDocument xdoc = XDocument.Parse(xml);

以下所有情况都返回null:

xdoc.Descendants(temp + "Result")
xdoc.Descendants();
xdoc.Element(temp + "Result");

我误解了什么?

******编辑**********

抱歉浪费每个人的时间。 我似乎使用的是http://www.tempuri.org而不是http://tempuri.org,而且在我的问题中错误地列出了正确的一个。

1 个答案:

答案 0 :(得分:1)

以下是如何通过几个明确的步骤来提取值:

using System;
using System.Diagnostics;
using System.Threading.Tasks;
using System.Xml.Linq;

namespace WaitForIt
{
    class Program
    {
        static void Main(string[] args)
        {
            string thexml = @"<Response xmlns=""http://tempuri.org/""><Result xmlns:a=""http://schemas.microsoft.com/2003/10/Serialization/Arrays"" xmlns:i=""http://www.w3.org/2001/XMLSchema-instance""><a:string>18c03787-9222-4c9b-8f39-44c2b39c788e</a:string><a:string>774d38d2-a350-4711-8674-b69404283448</a:string></Result></Response>";

        XDocument doc = XDocument.Parse(thexml);
        XNamespace ns = "http://tempuri.org/";

        var result = doc.Descendants(ns + "Result");
        var resultStrings = result.Elements();

        foreach (var el in resultStrings)
        {
            Debug.WriteLine(el.Value);
        }

        // output:
        // 18c03787-9222-4c9b-8f39-44c2b39c788e
        // 774d38d2-a350-4711-8674-b69404283448
     }        
   }
}