4

我有这个 xml,我在调查后试图从中获取节点中的值<ErrorCode>,我发现使用 XDocument 更容易,因为它可以清除\r\n来自 api 的响应给我的任何不需要的东西。但现在我不知道如何使用 XDocument 检索该值

<PlatformResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://platform.intuit.com/api/v1">
  <ErrorMessage>OAuth Token rejected</ErrorMessage>
  <ErrorCode>270</ErrorCode>
  <ServerTime>2012-06-19T03:53:34.4558857Z</ServerTime>
</PlatformResponse>

我希望能够利用这个调用来获得价值

 XDocument xmlResponse = XDocument.Parse(response);

我不能使用 XmlDocument,因为它不会像它那样清理 XML XDocument

谢谢

4

3 回答 3

10

由于您已经定义了命名空间,请尝试以下代码:

    XDocument xmlResponse = XDocument.Load("yourfile.xml");
    //Or you can use XDocument xmlResponse = XDocument.Parse(response)
    XNamespace ns= "http://platform.intuit.com/api/v1";
    var test = xmlResponse.Descendants(ns+ "ErrorCode").FirstOrDefault().Value;

或者,如果您不想使用命名空间,那么:

    var test3 = xmlResponse.Descendants()
                .Where(a => a.Name.LocalName == "ErrorCode")
                .FirstOrDefault().Value;
于 2012-06-19T04:17:29.193 回答
0

您可以使用 xpath 结构来获取值 somethink 像这样

string errorcode= xmlResponse.SelectSingleNode("PlatformResponse/ErrorCode").InnerText

或这个

string result = xmlResponse.Descendants("ErrorCode").Single().Value;
于 2012-06-19T04:02:57.763 回答
0
XDocument doc = XDocument.Load("YouXMLPath");

var query = from d in doc.Root.Descendants()
            where d.Name.LocalName == "ErrorCode"
            select d.Value;
于 2012-06-19T04:33:40.187 回答