TinyXml如何序列化
编辑: 如何使用tinyxml序列化xml?
TiXmlDocument doc;
TiXmlElement * root;
root = new TiXmlElement( "Data" );
doc.SaveFile( "madeByHand.xml" );
问题 2:我可以反序列化使用同一库tinyxml 创建的xml 吗?它有这个优势吗?
EDIT:
How can I serialize an xml using tinyxml?
TiXmlDocument doc;
TiXmlElement * root;
root = new TiXmlElement( "Data" );
doc.SaveFile( "madeByHand.xml" );
Question 2: Can I deserialize the xml i've created with the same library tinyxml? does it have this advantage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过阅读文档?第一页上有打印功能的详细信息。这些文档链接到教程,其中包含写入和读取文件的示例:
Have you tried reading the documentation? There's details of the print function on that first page. Those docs link to a tutorial which has an example of writing to and reading from a file: