tinyxml怎么用于MFC程序或者有没有例子程序发给我1285280276@qq.com
到pudn上帮我下一个也行谢谢了http://www.pudn.com/downloads388/sourcecode/others/detail1663740.html...
到pudn上帮我下一个也行谢谢了http://www.pudn.com/downloads388/sourcecode/others/detail1663740.html
展开
3个回答
展开全部
你将tinyxml目录下的tinyxml.h、tinystr.h 两个头文件和tinyxml.cpp、tinystr.cpp、 tinyxmlerror.cpp、tinyxmlparser.cpp四个源文件添加到你的项目中,然后在你调用到tinyxml相关函数的程序中添加引用tinyxml.h、tinystr.h 两个头文件的语句,
如:#include "tinyxml.h"
#include "tinystr.h"
如:#include "tinyxml.h"
#include "tinystr.h"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
还不是把.h和.cpp加到工程,然后引用头文件
// 读取配置文件
CString str, strFileName = _T("c:\\config.xml");
TiXmlDocument docXML( strFileName);
if( docXML.LoadFile())
{
// 文件句柄
TiXmlHandle docHandle( &docXML);
// 节点元素
TiXmlElement* pStartUp = docHandle.FirstChildElement( _T("一级节点名")).FirstChildElement( _T("二级节点名")).Element();
str = pStartUp->Attribute( _T("二级节点属性"));
}
// 读取配置文件
CString str, strFileName = _T("c:\\config.xml");
TiXmlDocument docXML( strFileName);
if( docXML.LoadFile())
{
// 文件句柄
TiXmlHandle docHandle( &docXML);
// 节点元素
TiXmlElement* pStartUp = docHandle.FirstChildElement( _T("一级节点名")).FirstChildElement( _T("二级节点名")).Element();
str = pStartUp->Attribute( _T("二级节点属性"));
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询