如何使用 .Net 2.0 中的 XMLReader 读取纯 XML 中的所有元素?

发布于 2024-07-27 19:01:53 字数 650 浏览 4 评论 0原文

我有以下 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 技术交流群。

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

发布评论

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

评论(4

辞取 2024-08-03 19:01:53

我不知道我是否会使用 XmlReader 来完成您正在做的事情,可能只是一个 XmlDocument,但如果您想要阅读器,可能像这样的东西可能会起作用:

Dim lastNode As String = string.Empty
Do While reader.Read()
     If reader.NodeType = Xml.XmlNodeType.Element Then
        lastNode = reader.Name
     Else If reader.NodeType = Xml.XmlNodeType.Text AND NOT string.IsNullOrEmpty(lastNode) THEN
         Me.Add(lastNode,reader.Value)
         lastNode = string.Empty    
     End If
Loop

请原谅我的任何语法错误; 自从用 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:

Dim lastNode As String = string.Empty
Do While reader.Read()
     If reader.NodeType = Xml.XmlNodeType.Element Then
        lastNode = reader.Name
     Else If reader.NodeType = Xml.XmlNodeType.Text AND NOT string.IsNullOrEmpty(lastNode) THEN
         Me.Add(lastNode,reader.Value)
         lastNode = string.Empty    
     End If
Loop

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.

自此以后,行同陌路 2024-08-03 19:01:53

使用 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.

妳是的陽光 2024-08-03 19:01:53

试试这个(未经测试):

    Do While reader.Read()
            If reader.NodeType = Xml.XmlNodeType.Element Then
                    Me.Add(reader.Name, reader.Value)
            End If
    Loop

Try this (untested):

    Do While reader.Read()
            If reader.NodeType = Xml.XmlNodeType.Element Then
                    Me.Add(reader.Name, reader.Value)
            End If
    Loop
溺ぐ爱和你が 2024-08-03 19:01:53
   Dim name As String
   Dim value As String

   While reader.Read()
        If reader.NodeType = XmlNodeType.Element Then
            name = reader.Name
            reader.Read()
            value = If((String.IsNullOrEmpty(reader.Value) OrElse reader.Value.Contains(Environment.NewLine)), "", reader.Value)
            Me.Add(name, value)
        End If
    End While
   Dim name As String
   Dim value As String

   While reader.Read()
        If reader.NodeType = XmlNodeType.Element Then
            name = reader.Name
            reader.Read()
            value = If((String.IsNullOrEmpty(reader.Value) OrElse reader.Value.Contains(Environment.NewLine)), "", reader.Value)
            Me.Add(name, value)
        End If
    End While
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文