读取XML和未声明的命名空间

时间:2013-12-04 23:15:08

标签: c# xml

当我尝试读取XML文件

时收到此错误消息
 Unhandled Exception: System.Xml.XmlException: 'xi' is an undeclared namespace. Line 12, position 18.
   at System.Xml.XmlTextReaderImpl.Throw(Exception e)
   at System.Xml.XmlTextReaderImpl.Throw(String res, String arg, Int32 lineNo, Int32 linePos)
   at System.Xml.XmlTextReaderImpl.LookupNamespace(NodeData node)
   at System.Xml.XmlTextReaderImpl.ElementNamespaceLookup()
   at System.Xml.XmlTextReaderImpl.ParseAttributes()
   at System.Xml.XmlTextReaderImpl.ParseElement()
   at System.Xml.XmlTextReaderImpl.ParseElementContent()
   at System.Xml.XmlTextReaderImpl.Read()
   at System.Xml.XmlTextReader.Read()

读取XML的代码:

   XmlTextReader reader = new XmlTextReader("file.xml");
    while (reader.Read())
    {
        // Do some work here on the data.
        Console.WriteLine(reader.Name);
    }
    Console.ReadLine();

xml文件:

<?xml version="1.0" encoding="ISO-8859-1"?>    
<doh> 
        <!-- Available Resources-->
        <servers>
                <xi:include href="file.xml"/>
        </servers>

1 个答案:

答案 0 :(得分:4)

我假设你想要使用XInclude。您必须定义 xi 前缀映射到的命名空间。最简单的原因是在根元素中包含名称空间映射。

  <doh xmlns:xi="http://www.w3.org/2001/XInclude">

请注意, XmlTextReader 不包含“file.xml”。您必须通过其他代码“包含”。有关XInclude的优秀背景文件可以在MSDN上的http://msdn.microsoft.com/en-us/library/aa302291.aspx

找到