0

我是 LINQ to XML 的新手,想知道是否有人可以帮助我构建以下查询。

我想返回所有<response>不包含<status>包含“404”的后代元素的元素。

我的 XML 如下所示。在这种情况下,只<response>应返回第一个元素(和后代)。

<multistatus xmlns="DAV:">
  <response>
    <href>/principals/users/test/</href>
    <propstat>
      <prop>
        <calendar-home-set xmlns="urn:ietf:params:xml:ns:caldav">
          <href xmlns="DAV:">/calendars/__uids__/d817aaec-7d24-5b38-bc2f-6369da72cdd9</href>
        </calendar-home-set>
      </prop>
      <status>HTTP/1.1 200 OK</status>
    </propstat>
  </response>
  <response>
    <href>/principals/users/test/calendar-proxy-write/</href>
    <propstat>
      <prop>
        <calendar-home-set xmlns="urn:ietf:params:xml:ns:caldav" />
      </prop>
      <status>HTTP/1.1 404 Not Found</status>
    </propstat>
  </response>
  <response>
    <href>/principals/users/test/calendar-proxy-read/</href>
    <propstat>
      <prop>
        <calendar-home-set xmlns="urn:ietf:params:xml:ns:caldav" />
      </prop>
      <status>HTTP/1.1 404 Not Found</status>
    </propstat>
  </response>
</multistatus>
4

5 回答 5

3

假设您的 XML 存储在字符串变量中xml

XDocument document = XDocument.Parse(xml);
XNamespace ns = document.Root.GetDefaultNamespace();

var responsesExcept404s = document
    .Descendants(ns + "response")
    .Where(x => !x.Descendants(ns + "status")
                  .Single()
                  .Value.Contains("404"));

注意ns变量的使用 - 因为您的 XML 通过xmlns属性设置了默认命名空间,所以在使用 LINQ to XML 时(例如在Descendants()方法中)有必要指定该命名空间。

然后,您可以简单地迭代结果,并使其超级有用,将它们输出到控制台:

responsesExcept404s.ToList().ForEach(Console.WriteLine);
于 2012-07-27T21:29:20.607 回答
2
XDocument xDoc = XDocument.Parse(xml);
XNamespace ns = XNamespace.Get("DAV:");
var responses = xDoc.Descendants(ns + "status")
                    .Where(s => !s.Value.Contains(" 404 "))
                    .Select(s => s.Parent.Parent);
于 2012-07-27T21:49:57.157 回答
1

来吧:(用 XPath 作弊)

        XDocument xdoc = XDocument.Load(new FileStream("XMLFile2.xml", FileMode.Open, FileAccess.Read));
        XPathNavigator nav = xdoc.CreateNavigator();
        var nsm = new XmlNamespaceManager(nav.NameTable);            
        nsm.AddNamespace("s", "DAV:");
        var nodes = xdoc.XPathSelectElements("s:multistatus/s:response[.//*[name(.)='status' and .='HTTP/1.1 404 Not Found']]", nsm);
于 2012-07-27T21:43:09.360 回答
0

尝试这个:

Document doc = XDocument.Load(path);
       XNamespace nsd = doc.Root.GetDefaultNamespace();
        var res = doc.Descendants(nsd +"response");                

        var filteredEle = new List<XElement>();

                    foreach (var ele in res)
                    {
                        if (CheckEle(ele,nsd))
                        {
                            filteredEle.Add(ele);
                        }
                    }    


    private bool CheckEle(XElement ele, XNamespace nsd)
        {
            return ele.Element(nsd + "propstat").Element(nsd + "status").Value != "HTTP/1.1 404 Not Found";
        }
于 2012-07-27T21:10:17.213 回答
0

您可以使用如下所示的 linq 语句

XDocument doc = XDocument.Parse(xml);
List<XElement> responseWithOut404 = 
    (from element in doc.Descendants("response")
     let xElement = element.Descendants("status").First() 
     where !xElement.Value.Contains("404")
     select element)
     .ToList();
于 2012-07-27T21:42:04.263 回答