我有以下 xml 文档
<Node id="1" name="name1" autoplayTrailer="false" visible="true" bgimages="false">
<Text>
<title id="2" type="text" hideineditor="false" visible="true"><![CDATA[Link]]></title>
<sections id="3" default="consideration">
<songs id="4" type="text" hideineditor="false" enabled="true" visible="true">
<![CDATA[
<div class="ThumbContainer">
Some text here
</div>
]]>
<songsTitle><![CDATA[sometexthtml here]]></songsTitle>
</songs>
</sections>
</Text>
</Node>
我想content/node
一一阅读并修改CDATA
内容并将xml写入光盘。
问题是我无法为<songs>
节点编写 CData,因为它在节点内有另一个节点<songTitle>
而不关闭</song>
节点是否可以用 CData 编写节点,而 CData 有另一个节点跟随 CData 内容?