【C语言教程】TinyXML如何读取xml文件用法详解

零 C语言教程评论64字数 3920阅读13分4秒阅读模式

所需工具:

C++

聪明的大脑文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

勤劳的双手文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

 文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

注意:本站只提供教程,不提供任何成品+工具+软件链接,仅限用于学习和研究,禁止商业用途,未经允许禁止转载/分享等文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

 文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

教程如下

前言

TinyXML下载地址:https://sourceforge.net/projects/tinyxml/文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

官方文档:TinyXML文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

TinyXML是个解析库,它由两个头文件(.h文件)和四个CPP文件(.cpp文件)构成,用的时候,只要将(tinyxml.h、tinystr.h、tinystr.cpp、tinyxml.cpp、tinyxmlerror.cpp、tinyxmlparser.cpp)导入工程就可以用它的东西了。如果需要,可以将它做成自己的DLL来调用。文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

XML文件理解

举一个官方文档《TinyXML Tutorial》中的例子文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

[php]
< xml version="1.0" >
<MyApp>
<!-- Settings for MyApp -->
<Messages>
<Welcome>Welcome to MyApp</Welcome>
<Farewell>Thank you for using MyApp</Farewell>
</Messages>
<Windows>
<Window name="MainFrame" x="5" y="15" w="400" h="250" />
</Windows>
<Connection ip="192.168.0.1" timeout="123.456000" />
</MyApp>
[/php]文章源自灵鲨社区-https://www.0s52.com/bcjc/cyyjc/12449.html

XML是树形结构,有层数之分,其结点分为不同的类别,而TinyXML中针对不同类别定义了不同的类,下面简单介绍一下:(粗体是常用的)

< xml version="1.0" >,TiXmlDeclaration,声明类
<MyApp>,TiXmlElement,元素类,该结点是根节点,后续的每个<></>都是一个结点
<!-- Settings for MyApp -->,TiXmlComment,注释类
Welcome to MyApp,TiXmlText,文本类,获取元素中的文本
TiXmlAttribute,属性类,name,x,y,w,h都是Window元素的属性

常用的XML类方法使用

接下来我们以一个目标检测的标签文件为例,来读取其中的boundingbox坐标信息。
XML文件:

[php]
&lt;annotation>
&lt;folder>JPEGImages&lt;/folder>
&lt;filename>409.bmp&lt;/filename>
&lt;path>E:\JPEGImages\409.bmp&lt;/path>
&lt;source>
&lt;database>Unknown&lt;/database>
&lt;/source>
&lt;size>
&lt;width>847&lt;/width>
&lt;height>419&lt;/height>
&lt;depth>3&lt;/depth>
&lt;/size>
&lt;segmented>0&lt;/segmented>
&lt;object>
&lt;name>bad_part&lt;/name>
&lt;pose>Unspecified&lt;/pose>
&lt;truncated>0&lt;/truncated>
&lt;difficult>0&lt;/difficult>
&lt;bndbox>
&lt;xmin>512&lt;/xmin>
&lt;ymin>153&lt;/ymin>
&lt;xmax>693&lt;/xmax>
&lt;ymax>325&lt;/ymax>
&lt;/bndbox>
&lt;/object>
&lt;object>
&lt;name>bad_part&lt;/name>
&lt;pose>Unspecified&lt;/pose>
&lt;truncated>0&lt;/truncated>
&lt;difficult>0&lt;/difficult>
&lt;bndbox>
&lt;xmin>251&lt;/xmin>
&lt;ymin>251&lt;/ymin>
&lt;xmax>321&lt;/xmax>
&lt;ymax>313&lt;/ymax>
&lt;/bndbox>
&lt;/object>
&lt;/annotation>
[/php]

文件中有两个boundingbox

获取bndbox元素下的最大最小坐标:

[php]
#include &lt;iostream>
//打开xml文件需要加载的头文件
#include "tinystr.h"
#include "tinyxml.h"
#include &lt;string>
#include&lt;typeinfo>
using namespace std;

int main()
{
//创建xml文件对象,并读取xml
TiXmlDocument doc;
doc.LoadFile("409.xml");

//获取xml中根元素,并输出根节点的值,为&lt;annotation>
TiXmlElement *root = doc.FirstChildElement();
cout &lt;&lt; root->Value() &lt;&lt; endl;

//获取根节点孩子,输出节点值,输出节点的内容,Text是char*
TiXmlElement *child = root->FirstChildElement();
cout &lt;&lt; child->Value() &lt;&lt; endl;
cout &lt;&lt; child->GetText() &lt;&lt; endl;
cout &lt;&lt; strlen(child->GetText())&lt;&lt; endl;
//cout &lt;&lt;typeid(child->GetText()).name()&lt;&lt; endl;

/*目标:找到xmin,xmax,ymin,ymax*/
int xmin1,ymin1,xmax1,ymax1;
//从根节点的第一个孩子节点开始遍历
while(child!=NULL)
{
if(child->ValueTStr() == "object")
{
TiXmlElement *box = child->FirstChildElement();
while(box->ValueTStr()!="bndbox")
{
box = box->NextSiblingElement();
}

TiXmlElement *xmin = box->FirstChildElement();
xmin1 = atoi(xmin->GetText());
//NextSiblingElement()获得同一层下一个节点
TiXmlElement *ymin = xmin->NextSiblingElement();
ymin1 = atoi(ymin->GetText());

TiXmlElement *xmax = ymin->NextSiblingElement();
xmax1 = atoi(xmax->GetText());

TiXmlElement *ymax = xmax->NextSiblingElement();
ymax1 = atoi(ymax->GetText());

cout&lt;&lt;xmin1&lt;&lt;endl;
cout&lt;&lt;ymin1&lt;&lt;endl;
cout&lt;&lt;xmax1&lt;&lt;endl;
cout&lt;&lt;ymax1&lt;&lt;endl;

}
child = child->NextSiblingElement();
}

/*
cout&lt;&lt;xmin1&lt;&lt;endl;
cout&lt;&lt;ymin1&lt;&lt;endl;
cout&lt;&lt;xmax1&lt;&lt;endl;
cout&lt;&lt;ymax1&lt;&lt;endl;
*/

/*一些其他方法的测试*/
/*
//获取兄弟节点中的size节点
TiXmlElement *brother = child->NextSiblingElement("size");
cout &lt;&lt; brother->Value() &lt;&lt; endl;
//cout &lt;&lt; typeid(brother->GetText()).name()&lt;&lt; endl;

//获取size节点下的属性值,&lt;>中的属性,本例没有属性
//cout &lt;&lt;brother->Attribute("width")&lt;&lt;endl;
//找size下面节点width
TiXmlElement *brother_child = brother->FirstChildElement();
cout &lt;&lt; brother_child->Value() &lt;&lt; endl;
cout &lt;&lt; brother_child->GetText() &lt;&lt; endl;

//读取到内容,并转为int型,因为项目需要int数据
int width = atoi(brother_child->GetText());
cout &lt;&lt; width &lt;&lt; endl;
*/

return 0;
}
[/php]

总结

主要是链表相关知识。
常用的解析xml的方法。
char*转int类型用atoi,转float用atof,typeid返回变量类型。

零
  • 转载请务必保留本文链接:https://www.0s52.com/bcjc/cyyjc/12449.html
    本社区资源仅供用于学习和交流,请勿用于商业用途
    未经允许不得进行转载/复制/分享

发表评论