码迷,mamicode.com
首页 > 编程语言 > 详细

C++中处理XML文件

时间:2016-09-13 22:19:02      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

环境是vs2010+Windows 7。

  timyxml库我是在这里下载的,直接就能编译,编译后得到tinyxml.lib。

  使用时当然也需要tinyxml.h文件。

  如果不想编译,这里能下载我编译好的lib,顺便附赠h文件。

  我程序中解析的xml文件在这里能找到。

代码如下:

#include <iostream>
#include <string>
#include "tinyxml.h"
using namespace std;
#pragma comment(lib,"tinyxml.lib")

int main()
{
const char * xmlFile = "lianxi.xml";
TiXmlDocument doc;
doc.LoadFile(xmlFile);
// doc.Print(); //输出xml文件看看

TiXmlElement* firstLevel=doc.RootElement();
cout<<firstLevel->Value()<<":"<<endl;

/*
某些情况会用注释的这些内容
比如:
<menu name="123" num="456">
</menu>

TiXmlAttribute *firstAtt=firstLevel->FirstAttribute();
while (firstAtt!=NULL)
{
cout<<firstAtt->Name()<<":"<<firstAtt->Value();
firstAtt=firstAtt->Next();
}
*/

TiXmlElement* secondLevel=firstLevel->FirstChildElement();
while(secondLevel!=NULL)
{
cout<<" ";
cout<<secondLevel->Value()<<":"<<endl;

TiXmlElement* thirdLevel=secondLevel->FirstChildElement();
while(thirdLevel!=NULL)
{
cout<<" ";
cout<<thirdLevel->Value()<<":"<<thirdLevel->GetText()<<endl;

thirdLevel=thirdLevel->NextSiblingElement();
}
secondLevel=secondLevel->NextSiblingElement();
}

cin.get();
return 0;
}

C++中处理XML文件

标签:

原文地址:http://www.cnblogs.com/liuhao111w/p/5869895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!