如何在c ++中使用libxml2生成xml文件?

时间:2015-06-09 11:54:20

标签: c++ libxml2

我想拥有以下xml文件:

<?xml version="1.0" encoding="UTF8" ?>
<!DOCTYPE people SYSTEM "XMLSpyDTD.dtd">
<report>
    <Start>
        <date format="ddMMyy" val="Tue Jun 09 2015&#x0A;" />
        <time format="hhmm" val="11:43:06 " />
    </Start>
    <test name="Testadd" executed="Yes">
        <discription>
            <![CDATA[Add two numbers]]>
        </discription>
        <targets>
            <target threaded="false">C++</target>
        </targets>
    </test>
</report>

那么,请建议我如何在c ++中使用libxml2生成它?

0 个答案:

没有答案