Sample code for 30+ languages & platforms
Unicode C

Using CDATA in XML

See more XML Examples

Demonstrates how to force the content of a node to be encapsulated in CDATA.

The output of the following program is an XML document that looks like this:


<root>
    <year>2009</year>
    <junk1>abc .. &lt; &amp; &gt; 123</junk1>
    <junk2><![CDATA[abc .. < & > 123]]></junk2>
</root>

Chilkat Unicode C Downloads

Unicode C
#include <C_CkXmlW.h>

void ChilkatSample(void)
    {
    HCkXmlW xml;
    HCkXmlW child1;
    HCkXmlW child2;
    HCkXmlW child3;

    xml = CkXmlW_Create();

    CkXmlW_putTag(xml,L"root");

    child1 = CkXmlW_NewChild(xml,L"year",L"2009");

    child2 = CkXmlW_NewChild(xml,L"junk1",L"abc .. < & > 123");

    child3 = CkXmlW_NewChild(xml,L"junk2",L"abc .. < & > 123");
    CkXmlW_putCdata(child3,TRUE);

    CkXmlW_Dispose(child1);
    CkXmlW_Dispose(child2);
    CkXmlW_Dispose(child3);

    wprintf(L"%s\n",CkXmlW_getXml(xml));


    CkXmlW_Dispose(xml);

    }