• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++:借助tinyxml2读取XML文件

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

// 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;
}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++透明位图发布时间:2022-07-13
下一篇:
C#仿QQ皮肤-DataGridView 最新1.2版 - 苏飞发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap