// XMLT01.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include "tinyxml2.h"

using namespace std;
using namespace TinyXml2;

void ReadTest01XML()
{
 XMLDocument doc;
 doc.LoadFile("Test01.xml");
 const char * content = doc.FirstChildElement("test")->GetText();
 printf("%s\n",content);
}

void Printfln(const char * content, const char * name = "",const int n = 0, const char * notEqual1 = "", const char * notEqual2 = NULL)
{
 for(int i = 0; i < n; i++)
 {
  printf("    ");
 }
 if(content != notEqual1 && content != notEqual2)
 {
  printf("%s: %s\n",name,content);
 }
 else
 {
  printf("%s: \n",name);
 }
}

void ReadXML(const XMLElement *root)
{
 if(NULL == root)
 {
  return;
 }

static int flag = 0;

const char * rootName = NULL;
 const char * rootContent = NULL;
 const XMLAttribute  * rootAttribute = NULL;
 const char * rootAttributeName = NULL;
 const char * rootAttributeValue = NULL;
 rootName = root->Name();
 rootContent = root->GetText();
 rootAttribute = root->FirstAttribute();
 if(NULL != rootAttribute)
 {
  rootAttributeName = rootAttribute->Name();
  rootAttributeValue = rootAttribute->Value();
 }
 Printfln(rootContent,rootName,flag);
 Printfln(rootAttributeValue,rootAttributeName,flag);

const XMLElement *child = root->FirstChildElement();
 if(NULL != child)
 {
  flag++;
  ReadXML(child);
 }

const XMLElement * nextSibling = root->NextSiblingElement();
 if(NULL != nextSibling)
 {
  ReadXML(nextSibling);
 }
 else
 {
  flag--;
  return;
 }
}

void ReadTest02XML()
{
 XMLDocument doc;
 doc.LoadFile("Test02.xml");
 const XMLElement *root = doc.RootElement();

ReadXML(root);

system("pause");
}

int _tmain(int argc, _TCHAR* argv[])
{
 ReadTest01XML();
 ReadTest02XML();
 return 0;
}

C++:借助tinyxml2读取XML文件的更多相关文章

  1. 用TinyXml2读取XML文件的一个简单Demo

    废话少说直接上代码,需要的人自然一看便懂,对于第一次接触TinyXml2的人来说还是有帮助的. <?xml version="1.0"?> <Table name ...

  2. C#中常用的几种读取XML文件的方法

    1.C#中常用的几种读取XML文件的方法:http://blog.csdn.net/tiemufeng1122/article/details/6723764/

  3. 读取xml文件报错:Invalid byte 2 of 2-byte UTF-8 sequence。

    程序读取xml文件后,系统报“Invalid byte 2 of 2-byte UTF-8 sequence”错误,如何解决呢? 1.程序解析xml的时候,出现Invalid byte 2 of 2- ...

  4. C#读取XML文件的基类实现

    刚到新单位,学习他们的源代码,代码里读写系统配置文件的XML代码比较老套,直接写在一个系统配置类里,没有进行类的拆分,造成类很庞大,同时,操作XML的读写操作都是使用SetAttribute和node ...

  5. C#读取XML文件的方法

    先写一个xml文件: <?xml version="1.0" encoding="utf-8" ?> <bookste> <!-- ...

  6. Spring相关:jdom学习:读取xml文件

    云课堂马士兵的spring2.5课程中提到的 用JDOM读取XML文件需先用org.jdom.input.SAXBuilder对象的build()方法创建Document对象,然后用Document类 ...

  7. 在C#中创建和读取XML文件

    1.创建简单的XML文件 为了便于测试,我们首先创建控制台应用程序,项目命名为CreateXml,Program.cs代码如下: 这样会在C盘根目录下创建data2.xml文件,文件内容为 using ...

  8. Java获取路径方法&相对路径读取xml文件方法

    (1).request.getRealPath("/");//不推荐使用获取工程的根路径 (2).request.getRealPath(request.getRequestURI ...

  9. python读取xml文件

    关于python读取xml文章很多,但大多文章都是贴一个xml文件,然后再贴个处理文件的代码.这样并不利于初学者的学习,希望这篇文章可以更通俗易懂的教如何使用python 来读取xml 文件. 什么是 ...

随机推荐

  1. IE6与CSS样式兼容问题汇总

    1.PNG半透明图片的问题 虽然可以通过JS等方式解决,但依然存在载入速度等问题,所以,这个上能不要用还是尽量不要用.以达到网站最大优化. 2.IE6下的圆角 IE6不支持CSS3的圆角属性,比较好的 ...

  2. [转载]Elasticsearch索引重建(Rebuild)

    From:http://blog.csdn.net/changong28/article/details/38491185 索引重建(Rebuild) 索引创建后,你可以在索引当中添加新的类型,在类型 ...

  3. Ubuntu16.04下Neo4j图数据库官网安装部署步骤(图文详解)(博主推荐)

    不多说,直接上干货! 说在前面的话  首先,查看下你的操作系统的版本. root@zhouls-virtual-machine:~# cat /etc/issue Ubuntu LTS \n \l r ...

  4. 【5】基于Log4Net的日志系统

    阅读目录 日志系统应具备的特性  Log4Net 配置文件:log4net.config 初始化 输出信息 对Log4Net的封装 log4net.config复杂配置   不管是Web应用程序还是W ...

  5. [Javascript] Wrap an API with a Proxy

    Proxies allow you to use functions that haven't yet been defined on an object. This means that you c ...

  6. [Javascript] Hositing

    First, memory is set aside for all necessary variables and declared functions. Function expression n ...

  7. [Javascript] Function Expression Ex, Changing Declarations to Expressions

    Inside the Haunted Hickory House file, developers for the Forest of Function Expressions Theme Park ...

  8. 2. Using 'dp' instead of 'px' to set text size

    android:textSize="45px"  ==> android:textSize="45dp" 因为Android Phone的手机分辨率各不相 ...

  9. CSS半透明兼容写法

    filter: Alpha(opacity=10); -moz-opacity:0.1; opacity:0.1; 例如: background:#A5CD40; filter: Alpha(opac ...

  10. UE如何将某些字符替换成换行

    如下所示,我想要在所有;后面加个回车 就把;替换成;^r^n 效果如下所示