我输出到XML阅读器的字符串有点问题,字符串的第一行是一行空格,当我尝试阅读时,我似乎无法摆脱它字符串它给我这个错误,因为在最顶部的空白行。
Error on line 5 of document:
The processing instruction target matching "[xX][mM][lL]" is not allowed.
Nested exception:
The processing instruction target matching "[xX][mM][lL]" is not allowed."
答案 0 :(得分:1)
你确定这是错误的来源吗?错误消息抱怨第5行。
看起来您创建的标记名称以xml
illegal according to the XML specifications开头:
以字符串
"xml"
开头的名称,或者带有任何字符串的名称 匹配(('X'|'x') ('M'|'m') ('L'|'l'))
,保留 本规范的此版本或未来版本中的标准化。