我的行为非常奇怪,无法确定问题。在下面的代码片段预期是
<![CDATA[<air:FareInfo Key="10T"></air:FareInfo>/>]]>
但我正在
<air:FareInfo Key="10T"></air:FareInfo>/>
为什么输出中缺少CDATA标记?我只是使用XmlReader.ReadString()而忽略了CDATA标记。</ p>
string xml = "<FareInfo>" +
"<![CDATA[<air:FareInfo Key=\"10T\">" +
"</air:FareInfo>/>]]>" +
"</FareInfo>";
Encoding encoding = new UTF8Encoding();
byte[] buffer = encoding.GetBytes(xml);
MemoryStream stream = new MemoryStream(buffer);
XmlReaderSettings settings = new XmlReaderSettings();
XmlReader reader = XmlReader.Create(stream, settings);
reader.Read();
string output = reader.ReadString();
Console.Write(output);
这方面的任何帮助都会非常值得注意。
答案 0 :(得分:2)
这样做: -
switch (reader.NodeType) {
case XmlNodeType.Text:
Console.Write(reader.Value);
break;
case XmlNodeType.CDATA:
Console.Write("<![CDATA[{0}]]>", reader.Value);
break;
}