2017年12月4日

xml的c++生成

摘要: 1 #include 2 #include 3 using namespace std; 4 //1.下载tinyxml并添加到头文件 5 //2.由父节点LinkEndChild来挂接子节点 6 #include "../tinyxml/tinyxml.h" //头文件路径 7 8 int test1() 9 { 10 TiXmlDocument xml_do... 阅读全文

posted @ 2017-12-04 23:58 Doctor_uee 阅读(812) 评论(0) 推荐(0)

xml入门语法实例

摘要: 1 //声明(版本号)(文字编码) 2 //根节点 3 myyuming //元素 4 8080 5 liee 6 123456789 //兄弟元素 7 987654321 //兄弟元素 8 //元素附上属性 9 2017/12/04 10 11 12 //优点:可读性强 13 //缺点:解析费时间,占用空间大,效率低 14 //通常用于传输数据 15 //元素... 阅读全文

posted @ 2017-12-04 12:47 Doctor_uee 阅读(126) 评论(0) 推荐(0)

导航