• C#中读取XML错误解决: System.Xml.XmlException: “Element”是无效的 XmlNodeType。


      在用C#写Xml解析时,抛出一个错误: System.Xml.XmlException: “Element”是无效的 XmlNodeType。在网上找了很久,没有结果,决定自己来找原因。

    我在读取下面这样的xml格式的文件时,我想读取Text里面的文本,然后我就使用xml解析:

    <Abstract>
    <Text>Hello Emma!!<p>error</p></Text>
    </Abstract>

    代码如下:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Xml.Linq;
    using System.Text;
    using System.Xml;
    using System.IO;
    using System.IO.Compression;
    using System.Collections;
    using System.Text.RegularExpressions;
    
      static void Main(string[] args) {
      XmlTextReader reader = new XmlTextReader(filePath);
     while (reader.Read())
                        {
          
                            switch (reader.Name)
                            {
      case "Abstract":
     XmlReader subtreeReader1 = reader.ReadSubtree();
                                    while (subtreeReader1.ReadToFollowing("Text")) {
                                        abstractContent += subtreeReader1.ReadContentAsString();
                                        hasAbstract = true; 
                                    }
                                   
                                    subtreeReader1.Close();
                                    break;
    }
    }

    然后就报错误: System.Xml.XmlException: “Element”是无效的 XmlNodeType。

    我去查看了,错误是由于<Text>里面还包含<p>这样的elment,所以没有办法转成string。把代码改为下面的就可以了。

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Xml.Linq;
    using System.Text;
    using System.Xml;
    using System.IO;
    using System.IO.Compression;
    using System.Collections;
    using System.Text.RegularExpressions;
    
      static void Main(string[] args) {
      XmlTextReader reader = new XmlTextReader(filePath);
     while (reader.Read())
                        {
          
                            switch (reader.Name)
                            {
      case "Abstract":
     XmlReader subtreeReader1 = reader.ReadSubtree();
                                    while (subtreeReader1.ReadToFollowing("Text")) {
                                        abstractContent += subtreeReader1.ReadString();
                                        hasAbstract = true; 
                                    }
                                   
                                    subtreeReader1.Close();
                                    break;
    }
    }
  • 相关阅读:
    ASP.NET MVC3 系列教程 部署你的WEB应用到IIS 6.0
    ASP.NET MVC3 系列教程 控制器 & 视图
    Windows 8 如何安装到Virtual Box虚拟机上(x86)
    工具脚本(网络编码)
    c库的rand/random随机数产生函数性能差?
    shell脚本模版
    linux的IO调度算法和回写机制
    thrift安装脚本
    通用高效的c++内存池(特定类型)
    [转] NoSQL生态系统
  • 原文地址:https://www.cnblogs.com/Gabby/p/6246009.html
Copyright © 2020-2023  润新知