XMLDocument 对象可以与 XPathDocument 对象一起使用吗?
我有一个静态方法,可以转换 html 文件并返回 XMLDocument 对象。
经过广泛的研究后,出现了以下问题:
可以将 XMLDocument 对象传递给 XPathDocument 对象,以便在仅从文档中读取数据而不是对其进行编辑时变得容易。
请回复并告诉我这是否可能?如果是这样,怎么办?
干杯。
I have a static method that converts a html file and returns an XMLDocument object.
After doing extensive research, the following question has arised:
Can pass an XMLDocument object to a XPathDocument object, to make it easy when simply reading data from the document and not editing it.
Please reply and let me know if this is possible? If so, how?
Cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您如何从文档中读取数据?
XmlDocument
和XPathDocument
都有一个CreateNavigator
方法,该方法返回用于读取文档的XPathNavigator
。否则,只需将XmlDocument
流式传输到MemoryStream
中,并从中创建XPathDocument
。How are you reading data from the document? Both
XmlDocument
andXPathDocument
have aCreateNavigator
method that returns anXPathNavigator
for reading the document. Otherwise, just stream theXmlDocument
into aMemoryStream
and create theXPathDocument
from that.