1

在下面的程序helloElem中,正如预期的那样,不为空。

string xml = @"<root>
<hello></hello>
</root>";

XDocument xmlDoc = XDocument.Parse(xml);
var helloElem = xmlDoc.Root.Element("hello"); //not null

如果给 XML 一个命名空间:

string xml = @"<root xmlns=""namespace"">
<hello></hello>
</root>";

XDocument xmlDoc = XDocument.Parse(xml);
var helloElem = xmlDoc.Root.Element("hello"); //null

为什么会helloElem变成空?在这种情况下如何获得 hello 元素?

4

4 回答 4

3

当然你可以摆脱namespaces,见下文:

string xml = @"<root>
                   <hello></hello>
               </root>";

 XDocument xmlDoc = XDocument.Parse(xml);
 var helloElem = xmlDoc.Descendants().Where(c => c.Name.LocalName.ToString() == "hello");

上面的代码可以处理带有或不带有namespaces. 有关更多信息,请参见Descendants()。希望这可以帮助。

于 2013-07-29T15:07:45.593 回答
2

尝试

 XNamespace ns = "namespace";
 var helloElem = xmlDoc.Root.Element(ns + "hello"); 
于 2013-07-29T14:29:49.630 回答
2

做如下

XDocument xmlDoc = XDocument.Parse(xml);
XNamespace  ns = xmlDoc.Root.GetDefaultNamespace();
var helloElem = xmlDoc.Root.Element(ns+ "hello"); 
于 2013-07-29T14:39:45.583 回答
1

这是一个默认的命名空间 XPath。

private static XElement XPathSelectElementDefaultNamespace(XDocument document,
                                                           string element)
{
    XElement result;
    string xpath;

    var ns = document.Root.GetDefaultNamespace().ToString();

    if(string.IsNullOrWhiteSpace(ns))
    {
        xpath = string.Format("//{0}", element);
        result = document.XPathSelectElement(xpath);
    }
    else
    {
        var nsManager = new XmlNamespaceManager(new NameTable());
        nsManager.AddNamespace(ns, ns);

        xpath = string.Format("//{0}:{1}", ns, element);
        result = document.XPathSelectElement(xpath, nsManager);
    }

    return result;
}

用法:

string xml1 = @"<root>
<hello></hello>
</root>";

string xml2 = @"<root xmlns=""namespace"">
<hello></hello>
</root>";

var d = XDocument.Parse(xml1);
Console.WriteLine(XPathSelectElementDefaultNamespace(d, "hello"));
// Prints: <hello></hello>

d = XDocument.Parse(xml2);
Console.WriteLine(XPathSelectElementDefaultNamespace(d, "hello"));
// Prints: <hello xmlns="namespace"></hello>
于 2013-07-29T14:55:22.323 回答