XmlDocument.SelectNodes 问题
使用根节点选择和使用文档对象选择节点有什么区别? 哪种方式是首选。
例如,
1.
XmlDocument Doc = new XmlDocument();
Doc.Load(mem);
XmlNodeList nodeList = Doc.SelectNodes(@"//@id");
2.
XmlDocument Doc = new XmlDocument();
Doc.Load(mem);
XmlElement root = Doc.DocumentElement;
XmlNodeList nodeList = root.SelectNodes(@"//@id");
What's the difference using root node to select and using document object to select nodes?
Which way is preferred.
For example,
1.
XmlDocument Doc = new XmlDocument();
Doc.Load(mem);
XmlNodeList nodeList = Doc.SelectNodes(@"//@id");
2.
XmlDocument Doc = new XmlDocument();
Doc.Load(mem);
XmlElement root = Doc.DocumentElement;
XmlNodeList nodeList = root.SelectNodes(@"//@id");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
事实上,我从来没有发现任何差异。并使用只是
因为如果文档的根存在
In fact, I never got any differences. And use just
because if document's root exists
由于 XPath 的
//
表达式始终与文档匹配root,无论您从文档根还是从其documentElement
开始,结果都是相同的。所以我想你最好使用较短的 Doc.SelectNodes("//@id"); 语法。
Since XPath's
//
expression always matches from the document root, the result will be the same whether you start from the document root or from itsdocumentElement
.So I guess you're better off using the shorter
Doc.SelectNodes("//@id");
syntax.XML 文档的根至少包含其文档元素,但也可能包含处理指令和注释。例如,在此 XML 文档中:
根具有三个子节点,其中之一是其顶级元素。在这种情况下, this:
和 this:
返回完全不同的结果。
The root of an XML document contains its document element at least, but it may also contain processing instructions and comments. For instance, in this XML document:
the root has three child nodes, one of which is its top-level element. In this case, this:
and this:
return totally different results.