在 .net 中读取大型 XML 文档

Reading large XML documents in .net(在 .net 中读取大型 XML 文档)
本文介绍了在 .net 中读取大型 XML 文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我需要使用 .net 文件读取大型 xml,这些文件的大小很容易达到几 GB.

I need to read large xml using .net files which can easily be several GB of size.

我尝试使用 XDocument,但是当我尝试加载文档时它只是抛出 System.OutOfMemoryException.

I tried to use XDocument, but it just throws an System.OutOfMemoryException when I try to load the document.

读取大尺寸 XML 文件的最佳方式是什么?

What is the most performant way to read XML files of large size?

推荐答案

你基本上在这里使用拉"模型 - XmlReader 和朋友.这将允许您流式传输文档,而不是一次性将其全部加载到内存中.

You basically have to use the "pull" model here - XmlReader and friends. That will allow you to stream the document rather than loading it all into memory in one go.

请注意,如果您知道自己处于足够小"元素的开头,则可以创建一个 XElement 来自 XmlReader,使用 LINQ to XML 的荣耀处理它,然后移动到下一个元素.

Note that if you know that you're at the start of a "small enough" element, you can create an XElement from an XmlReader, deal with that using the glory of LINQ to XML, and then move onto the next element.

这篇关于在 .net 中读取大型 XML 文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Custom Error Queue Name when using EasyNetQ for RabbitMQ?(使用 EasyNetQ for RabbitMQ 时自定义错误队列名称?)
How to generate password_hash for RabbitMQ Management HTTP API(如何为 RabbitMQ 管理 HTTP API 生成密码哈希)
Rabbitmq Ack or Nack, leaving messages on the queue(Rabbitmq Ack 或 Nack,将消息留在队列中)
Wait for a single RabbitMQ message with a timeout(等待一条带有超时的 RabbitMQ 消息)
Setup RabbitMQ consumer in ASP.NET Core application(在 ASP.NET Core 应用程序中设置 RabbitMQ 消费者)
Specify Publish timeouts in mass transit(指定公共交通中的发布超时)