博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学习笔记之cocos2d-x2.1.1实现修改plist文件数据,用TinyXml解析XML
阅读量:4957 次
发布时间:2019-06-12

本文共 1515 字,大约阅读时间需要 5 分钟。

如果不了解TinyXml,建议先看一下这篇博客

http://blog.csdn.net/nat_myron/article/details/8740028

plist文件如下

 

picture
1.png
2.png
3.png
point
{257.902405,410.831543}
{521.964294,436.794006}
{766.067932,410.830719}

操作如下

 

 

TiXmlDocument *myDocument = new TiXmlDocument("SmallTools.plist");	myDocument->LoadFile();	TiXmlElement *RootPlist  = myDocument->RootElement();//plist	TiXmlElement *FirstDict = RootPlist->FirstChildElement();//dict	TiXmlElement *FirstKey = FirstDict->FirstChildElement();//key	TiXmlElement *SecDict = FirstKey->NextSiblingElement();//array	TiXmlElement *SecKey = SecDict->NextSiblingElement();//key	TiXmlElement *ThirdDict = SecKey->NextSiblingElement();//array	CCLOG(ThirdDict->Value());	//删除所有的子结点	ThirdDict->Clear();	for (int i=0;i
objectAtIndex(i); CCPoint point = sprite->getPosition(); char str[50]; sprintf(str,"{%lf,%lf}",point.x,point.y); TiXmlElement *NameElement = new TiXmlElement("string"); ThirdDict->LinkEndChild(NameElement); TiXmlText *NameContent = new TiXmlText(str); NameElement->LinkEndChild(NameContent); myDocument->SaveFile("SmallTools.plist"); }

 

 

转载于:https://www.cnblogs.com/xinyuyuanm/archive/2013/03/30/2990573.html

你可能感兴趣的文章
Linux centosVMware shell 管道符和作业控制、shell变量、环境变量配置文件
查看>>
【设计模式】工厂模式
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
客户数据库出现大量cache buffer chains latch
查看>>
機械の総合病院 [MISSION LEVEL: C]
查看>>
实战练习细节(分行/拼接字符串/字符串转int/weak和copy)
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
AngularJs表单验证
查看>>
静态方法是否属于线程安全
查看>>
02号团队-团队任务3:每日立会(2018-12-05)
查看>>
SQLite移植手记1
查看>>
C# windows程序应用与JavaScript 程序交互实现例子
查看>>
HashMap详解
查看>>
js05-DOM对象二
查看>>
mariadb BINLOG_FORMAT = STATEMENT 异常
查看>>
C3P0 WARN: Establishing SSL connection without server's identity verification is not recommended
查看>>
iPhone在日本最牛,在中国输得最慘
查看>>
动态方法决议 和 消息转发
查看>>
WPF自定义搜索框代码分享
查看>>