XMLParser解析创建简单的XML文件

#include <string.h>
#include <iostream.h>
#include <stdio.h>
#include "xmlParser.hpp"  //一个xml解析类的头文件

 

void main()

{

    XMLResults pResults;
    XMLNode xMainNode = XMLNode::parseFile("d://test.xml");

    XMLNode xNode;
    for(int i=0; i < xMainNode.nChildNode(); i++)
   {
        xNode = xMainNode.getChildNode(i);
        printf("%-15s: %s/n", xNode.getName(), xNode.getText(0));
   }

}

 

运行结果:

 

你可能感兴趣的:(xml,include)