在 ASP.NET 中更快地读取 XML 文件

发布于 2024-09-06 13:07:09 字数 249 浏览 9 评论 0原文

我有多个需要解析的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剪不断理还乱 2024-09-13 13:07:11

XmlDocument 是更好的选择。在其中使用 xPath 查询。我猜 XmlDocument 会自动关心性能。

XmlDocument is a better choice. Within it use xPath queries. I guess XmlDocument take cares about performance automatically.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文