读取和使用xml文件的一般步骤

前端之家收集整理的这篇文章主要介绍了读取和使用xml文件的一般步骤前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用到了tinyxml这个开源的类

	CString strConfigFile = _T("XXX.xml");
	TiXmlDocument doc(strConfigFile);
	if (doc.LoadFile())
	{
		TiXmlElement* pRootNode = doc.RootElement();
		TiXmlElement* pBlkNode = NULL;
		if(pRootNode)
			pBlkNode = pRootNode->FirstChildElement();

		// add items
		while (pBlkNode)
		{
			//Do sth with this node
			
			pBlkNode = pBlkNode->NextSiblingElement();
		} 
	}
原文链接:/xml/295292.html

猜你在找的XML相关文章