10

我在尝试加载 xml 时收到“意外的 XML 声明。XML 声明必须是文档中的第一个节点,并且在它之前不允许出现空白字符”错误。下面给出了我的 C# 代码和 XML 文件的内容。XML 定义存在于 xml 文件的第 6 行,因此存在错误。

我无法控制 xml 文件中的内容,所以我如何使用 C# 编辑/重写它,以便首先出现 xml 声明,然后是注释以加载它而不会出现任何错误!

//xmlFilepath is the path/name of the xml file passed to this function
static function(string xmlFilepath)
{
XmlReaderSettings readerSettings = new XmlReaderSettings();
readerSettings.IgnoreComments = true;
readerSettings.IgnoreWhitespace = true;
XmlReader reader = XmlReader.Create(XmlFilePath, readerSettings);
XmlDocument xml = new XmlDocument();
xml.Load(reader);
}

xmlDoc.xml

<!-- Customer ID: 1 -->
<!-- Import file: XmlDoc.xml -->
<!-- Start time: 8/14/12 3:15 AM -->
<!-- End time: 8/14/12 3:18 AM -->

<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
-----
4

4 回答 4

17

正如错误所述,XML 文档的前五个字符应该是<?xml. 没有如果,ands 或 buts。您在开始 XML 标记上方的注释是非法的;它们必须放在 XML 标记内部(因为注释结构本身是由 XML 标准定义的,因此在主要 XML 标记之外没有意义)。

编辑:考虑到 OP 的文件格式,这样的东西应该能够重新排列行:

var lines = new List<string>();

using (var fileStream = File.Open(xmlFilePath, FileMode.Open, FileAccess.Read))
   using(var reader = new TextReader(fileStream))
   {
      string line;
      while((line = reader.ReadLine()) != null)
         lines.Add(line);
   }   

var i = lines.FindIndex(s=>s.StartsWith("<?xml"));
var xmlLine = lines[i];
lines.RemoveAt(i);
lines.Insert(0,xmlLine);

using (var fileStream = File.Open(xmlFilePath, FileMode.Truncate, FileAccess.Write)
   using(var writer = new TextWriter(fileStream))
   {
      foreach(var line in lines)
         writer.Write(line);

      writer.Flush();
   } 
于 2012-08-14T19:26:16.323 回答
5

那不是有效的 XML。

正如错误明确指出的那样,XML 声明 ( <?xml ... ?>) 必须放在首位

于 2012-08-14T19:23:55.377 回答
1

我正在使用以下函数从 xml 中删除空格:

public static void DoRemovespace(string strFile)
    {
        string str = System.IO.File.ReadAllText(strFile);
        str = str.Replace("\n", "");
        str = str.Replace("\r", "");
        Regex regex = new Regex(@">\s*<");
        string cleanedXml = regex.Replace(str, "><");
        System.IO.File.WriteAllText(strFile, cleanedXml);

    }
于 2015-02-12T11:58:43.703 回答
1

不要在文件开头添加任何注释!

于 2017-04-14T02:33:56.613 回答