想要在运行时用XML封装带有CDATA的数据

时间:2014-03-10 09:59:02

标签: java xml

我正在获取xml文件。无论我在哪里发现,我都希望在CDATA中包含数据。在我的xml文件中。我该怎么办? 任何帮助将不胜感激。

   <?xml version="1.0" encoding="UTF-8"?>
<note>
    <to>Tove</to>
    <from>Jani</from>
    <heading>Reminder</heading>
    <body>Don't & forget me this weekend!</body>
</note>

1 个答案:

答案 0 :(得分:0)

这是你在找什么?

Element element = doc.getDocumentElement();
        CDATASection cdata = doc.createCDATASection("mycdata");
        cdata.appendData("contents");
        element.appendChild(cdata);