- 1、本文档共22页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
xml操作C表述
VC中tinyxml使用方法简介
1.加载文件。
TiXmlDocument doc( demo.xml );
doc.LoadFile();
2.
void main(void)
{
TiXmlDocument doc(example1.xml);
bool loadOkay = doc.LoadFile();
if (loadOkay)
{
printf(\n%s:\n, pFilename);
dump_to_stdout( doc ); // defined later in the tutorial
}
else
{
printf(Failed to load file \%s\\n, pFilename);
}
return;
}
example1.xml 的内容如果是:
?xml version=1.0 ?
HelloWorld/Hello
输出为:
DOCUMENT
+ DECLARATION
+ ELEMENT Hello
+ TEXT[World]
3.建立文档的方法.
void build( )
{ TiXmlDocument doc;
TiXmlDeclaration * decl = new TiXmlDeclaration( 1.0, , );
TiXmlElement * element = new TiXmlElement( Hello );
TiXmlText * text = new TiXmlText( World );
element-LinkEndChild( text );
doc.LinkEndChild( decl );
doc.LinkEndChild( element );
doc.SaveFile( example1.xml );
}
4.设定节点属性。
TiXmlElement window = new TiXmlElement( Demo );
window-SetAttribute(name, Circle);
window-SetAttribute(x, 5);
window-SetAttribute(y, 15);
window-SetDoubleAttribute(radius, 3.14159);
5.获取元素的所有属性,并打印出属性名称和值
int printElement(TiXmlElement* pElement, unsigned int indent)
{
if ( !pElement ) return 0;
TiXmlAttribute* pAttrib=pElement-FirstAttribute();
int i=0;
int ival;
double dval;
const char* pIndent=getIndent(indent);
printf(\n);
while (pAttrib)
{
printf( %s%s: value=[%s], pIndent, pAttrib-Name(), pAttrib-Value());
if (pAttrib-QueryIntValue(ival)==TIXML_SUCCESS) printf( int=%d, ival);
if (pAttrib-QueryDoubleValue(dval)==TIXML_SUCCESS) printf( d=%1.1f, dval);
printf( \n );
i++;
pAttrib=pAttrib-Next();
}
return i;
}
6.写入文件,其实上面已经用到了。
doc.SaveFile( saveFilename );
7.建立一个其内容如下的文档:
?xml version=1.0 ?
MyApp
!-- Settings for MyApp --
Messages
WelcomeWelcome to MyApp/Welcome
FarewellThank 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
void main( )
{
TiXmlDocument doc;
TiXmlElement* msg;
TiXmlDeclaration* decl = new TiXmlDeclaration( 1.0, , ); //文档声明
doc.LinkEndChild( decl );
TiXmlElement * root = new TiXmlElem
文档评论(0)