<?xml version="1.0" encoding="utf-8"?>
<Organization>
<Devices>
<Device id="1000006" type="201">
<UnitNodes index="0" channelnum="2" >
<Channel id="1000006$2$0$0" name="TV1" />
<Channel id="1000006$2$0$1" name="TV2" />
</UnitNodes>
</Device>
</Devices>
</Organization>
创新互联建站专注于云安网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供云安营销型网站建设,云安网站制作、云安网页设计、云安网站官网定制、小程序定制开发服务,打造云安网络公司原创品牌,更为您提供云安网站排名全网营销落地服务。
代码
void IterChannelNode(const TiXmlNode* nodeUnit, std::vector<struChannelInfo> &vecChannelInfo)
{
const TiXmlNode* nodeChannelIter = NULL;
nodeChannelIter = nodeUnit->IterateChildren("Channel", nodeChannelIter);
do
{
if (NULL == nodeChannelIter) break;
std::string strName = nodeChannelIter->ToElement()->Attribute("name");
struChannelInfo channelInfo;
channelInfo.strChannelId = nodeChannelIter->ToElement()->Attribute("id");
channelInfo.strChannelName = nodeChannelIter->ToElement()->Attribute("name");
vecChannelInfo.push_back(channelInfo);
nodeChannelIter = nodeChannelIter->NextSibling();
} while (1);
}
void IterUnitNode(const TiXmlNode* nodeDevice, std::vector<struChannelInfo> &vecChannelInfo)
{
const TiXmlNode* nodeUnitIter = NULL;
nodeUnitIter = nodeDevice->IterateChildren("UnitNodes", nodeUnitIter);
do
{
if (NULL == nodeUnitIter) break;
IterChannelNode(nodeUnitIter, vecChannelInfo);
nodeUnitIter = nodeUnitIter->NextSibling();
} while (1);
}
int IterDeviceInfo(const std::string &strXML, std::vector<struChannelInfo> &vecChannelInfo)
{
if (strXML.empty()) return -1;
TiXmlDocument doc;
doc.LoadFile(strXML.c_str());
TiXmlElement* root = doc.FirstChildElement();
if (NULL == root) return -1;
const TiXmlNode* nodeDevices = NULL;
nodeDevices = root->IterateChildren("Devices", nodeDevices);
if (NULL == nodeDevices) return -1;
const TiXmlNode* nodeDevice = NULL;
nodeDevice = nodeDevices->IterateChildren("Device", nodeDevice);
do
{
if (NULL == nodeDevice) break;
//访问第一个节点
std::string strTypeId = nodeDevice->ToElement()->Attribute("type");
std::cout << strTypeId << std::endl;
IterUnitNode(nodeDevice, vecChannelInfo);
nodeDevice = nodeDevice->NextSibling();
} while (1);
return 0;
}
文章标题:tinyxml第二课文件读取
文章出自:https://www.cdcxhl.com/article26/isjdjg.html
成都网站建设公司_创新互联,为您提供网站改版、定制开发、网站设计、网站设计公司、企业网站制作、移动网站建设
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联