Java Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

Java Examples

Quick Start
Unicode
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML-to-XML
HTTP
IMAP
MHT
MIME
POP3
RSA
S/MIME
SFTP
Signatures
SMTP
Socket / SSL
Spider
SSH
SSH Key
SSH Tunnel
Tar
Upload
XML
XMP
Zip

More Examples...
Email Object
FileAccess
RSS
Atom
String
Byte Array
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA

Unreleased...
Bzip2
LZW
Icon

 

 

 

 

 

 

 

Add Child Tree

Add a child tree to an existing XML document.

Download Chilkat Java Library

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    //  First, build a sample XML document:
    CkXml xml = new CkXml();
    xml.put_Tag("stocks");

    CkXml xmlM;
    xmlM = xml.NewChild("Microsoft","");
    xmlM.NewChild2("symbol","MSFT");
    xmlM.NewChild2("recentPrice","28.00");

    CkXml xmlG;
    xmlG = xml.NewChild("Google","");
    xmlG.NewChild2("symbol","GOOG");
    xmlG.NewChild2("recentPrice","440.00");

    //  Display the XML so far...
    System.out.println(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:
    String xYahoo;
    xYahoo = "<Yahoo><symbol>YHOO</symbol><recentPrice>28.00</recentPrice></Yahoo>";

    CkXml xmlYahoo = new CkXml();
    xmlYahoo.LoadXml(xYahoo);

    //  Add the xmlYahoo document just under the root node of
    //  our original XML document:
    xml.AddChildTree(xmlYahoo);

    //  Display the result:
    System.out.println(xml.getXml());


  }
}

 

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2008 Chilkat Software, Inc. All Rights Reserved.