在 ASP.NET 中更快地读取 XML 文件
我有多个需要解析的 XML 文件。问题是我只需要最后几行中的一些数据。
我目前使用 XMLTextReader 和 reader.ReadToFollowing("DATANEEDED");但还是太慢了。有谁知道我是否可以“尾随”XML 文件并从那里读取? (考虑到尾部不是有效的 XML 文件)或任何其他方法来检索 XML 中的最后几个节点而不解析整个 XML 文件?
我正在使用 .NET 2.0,所以没有内置 linq :(
谢谢
I have multiple XML files that I need to parse. Problem is that I only need some data in the last couple of lines.
I currently use XMLTextReader and reader.ReadToFollowing("DATANEEDED"); but it is still too slow. Does anyone know if I can 'tail' an XML file and read from there? (taking into account the tail would not be a valid XML file) or any other ways to retrieve the last few nodes in the XML without parsing through the entire XML file?
I am using .NET 2.0 so no in-built linq :(
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XmlDocument
是更好的选择。在其中使用 xPath 查询。我猜XmlDocument
会自动关心性能。XmlDocument
is a better choice. Within it use xPath queries. I guessXmlDocument
take cares about performance automatically.