<Response>
<Items>
<attributes></attributes>
</Items>
<Locations>
<attributes></attributes>
</Locations>
</Response>
我有一个上面显示格式的XML文件。
我想将attributes
父{林地} Items
保存在数据库中的单独表格中,并将attributes
父亲Locations
保存在另一个表格中。
我无法使用XmlReader element .Read()
。我一直在使用XmlDocument.Load
初始加载阅读器XmlDocument
并使用
doc.SelectSingleNode("//Items")
将选择nodes
,并将通过XmlReader
解析内部信息。
但是现在我遇到了将XmlReader
加载到XmlDocument
的问题,因为我得到OutOfMemoryException.
有人可以帮我解决这个问题吗?