C/C++教程

关于C++中?TinyXML-2类库可以在下载压缩包,?类库中的函数使用心得

本文主要是介绍关于C++中?TinyXML-2类库可以在下载压缩包,?类库中的函数使用心得,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

安装使用方法在TinyXML-2: TinyXML-2 (leethomason.github.io)中有介绍,TinyXML-2类库可以这里在下载压缩包。

使用TinyXML-2中的函数来进入节点并获取节点名(Value())、文本(GetText()//如果有的话)和节点属性名(Attribute name)和属性值(Attribute  Value);

const tinyxml2::XMLAttribute* attributeOfNameValue = Node->FirstAttribute();

//获取本节点中第一个属性名和值

 attributeName=attributeOfNameValue->Name()//本节点属性名

 attributeValue=attributeOfNameValue->Value()//本节点属性值

 tinyxml2::XMLElement* File = doc.RootElement();//获取xml文件中的根节点并赋值于File并进入

tinyxml2::XMLElement* FirstChildNode = File->FirstChildElement();

//获取根节点中的第一个子节点并进入

tinyxml2::XMLElement* SecondChildNode = File->NextSiblingElement();

//获取本级节点中的第二个子节点并进入

NodeName=File->value();//获得本节点名

NodeName=File->FirstChild()->Value();//获得本节点第一个子节点名

NodeName= FirstChildNode->NextSibling()->Value() //获得第一个子节点的同级第二个节点名

NodeText=FirstChild()->GetText();//获得节点内的文本数据

这篇关于关于C++中?TinyXML-2类库可以在下载压缩包,?类库中的函数使用心得的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!