如何使用 .Net 2.0 中的 XMLReader 读取纯 XML 中的所有元素?
我有以下 XML:
<XMLDictionary>
<a>b</a>
<c>d</c>
<e>f</e>
</XMLDictionary>
我正在尝试获取映射 a: b、c: d、e: f,但我不太找到如何简单地执行此操作。
我当前的代码如下所示:
Do While reader.Read()
If reader.NodeType = Xml.XmlNodeType.Element Then
Me.Add(reader.Name, reader.ReadElementString)
End If
Loop
问题是我不知道如何在不调用 ReadElementString 的情况下读取元素的内容,而 ReadElementString 将“指针”前进到下一个节点(因此 reader.Name 已经具有下一个值) 。 当我在循环中再次调用 Read() 时,我会跳过节点。
我已经尝试了这个主题的几种变体,但没有一个能完美地工作,这表明我在这里遗漏了一些重要的东西。
有什么指点吗?
谢谢
I have the following XML:
<XMLDictionary>
<a>b</a>
<c>d</c>
<e>f</e>
</XMLDictionary>
I'm trying to get the mappings a: b, c: d, e: f, and I can't quite find how to do it simply.
My current code looks like this:
Do While reader.Read()
If reader.NodeType = Xml.XmlNodeType.Element Then
Me.Add(reader.Name, reader.ReadElementString)
End If
Loop
The problem is that I don't know how to read the contents of the element without calling ReadElementString, and ReadElementString advances the "pointer" to the next node (so reader.Name already has the next value). When in the loop I call Read() again, i'm skipping nodes.
I've tried several variations on this theme, and none works perfectly, which indicates that i'm missing something important here.
Any pointers?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不知道我是否会使用 XmlReader 来完成您正在做的事情,可能只是一个 XmlDocument,但如果您想要阅读器,可能像这样的东西可能会起作用:
请原谅我的任何语法错误; 自从用 VB.net 编写以来已经有一段时间了。 这是一个基本状态机,首先检测是否找到元素,然后开始查找文本值。
I don't know if I would use the XmlReader for what you are doing, probably just an XmlDocument, but if you want the reader, probably something like this might work:
Forgive me for any syntax errors; it's been a while since of written in VB.net. This is a basic state machine that first detects if an Element is found and then starts looking for a text value.
使用 reader.ReadString() 而不是 reader.ReadElementString() 怎么样? 或者可能只使用 reader.Value 来获取当前节点的值。
How about using reader.ReadString() instead of reader.ReadElementString()? Or possibly instead of that just use reader.Value to get the value of the current node.
试试这个(未经测试):
Try this (untested):