Chilkat HOME Android™ ASP Visual Basic VB.NET C# iOS (IPhone) Objective-C C++ C Unicode C++ Unicode C MFC Delphi DLL Delphi ActiveX FoxPro Java Perl PHP Extension PHP ActiveX Python PowerShell Ruby SQL Server VBScript
Add Child TreeAdd a child tree to an existing XML document. Downloads: MS Windows Visual C/C++ Libraries Linux/CentOS C/C++ Libraries MAC OS X C/C++ Libraries Solaris C/C++ Libraries C++ Builder Libraries FreeBSD C++ Libraries HP-UX C++ Libraries BlackBerry QNX C++ Libraries #include <CkXml.h> void ChilkatSample(void) { // First, build a sample XML document: CkXml xml; xml.put_Tag("stocks"); CkXml *xmlM = 0; xmlM = xml.NewChild("Microsoft",""); xmlM->NewChild2("symbol","MSFT"); xmlM->NewChild2("recentPrice","28.00"); CkXml *xmlG = 0; xmlG = xml.NewChild("Google",""); xmlG->NewChild2("symbol","GOOG"); xmlG->NewChild2("recentPrice","440.00"); // Display the XML so far... printf("%s\n",xml.getXml()); // This is the XML displayed: // <stocks> // <Microsoft> // <symbol>MSFT</symbol> // <recentPrice>28.00</recentPrice> // </Microsoft> // <Google> // <symbol>GOOG</symbol> // <recentPrice>440.00</recentPrice> // </Google> // </stocks> // We want to add Yahoo to it: const char * xYahoo; xYahoo = "<Yahoo><symbol>YHOO</symbol><recentPrice>28.00</recentPrice></Yahoo>"; CkXml xmlYahoo; xmlYahoo.LoadXml(xYahoo); // Add the xmlYahoo document just under the root node of // our original XML document: xml.AddChildTree(xmlYahoo); // Display the result: printf("%s\n",xml.getXml()); delete xmlM; delete xmlG; } |
© 2000-2013 Chilkat Software, Inc. All Rights Reserved.