tinyXML的用法

时间:2024-09-04 14:07:08

tinyXML一款很优秀的操作C++类库,文件不大,但方法很丰富,和apache的Dom4j可以披靡啊!习惯了使用java类库的我看到这么丰富的c++类库,很高兴!它使用很简单,只需要拷贝几个文件到你的工程中,没有STL也可以编译运行。 
    
    下面我从这几个方面谈谈对tinyXML类库的使用以及理解。

首先在sourceforge上下载tinyXML类库,地址:http://sourceforge.net/projects/tinyxml/

然后解压缩tinyXML后,将这六个文件添加到你的c++工程中,分别是tinystr.h、tinystr.cpp、tinyxml.h、tinyxml.cpp、tinyxmlerror.cpp、tinyxmlparser.cpp。在需要操作xml文件的地方,使用如下代码,就可以引入tinyXML类库。

  1. #include<tinyxml>

或者

  1. #include "tinyxml.h"

下面我用个简单的例子说明如何使用tinyXML操作xml文件。在讲例子之前我先说说tinyXML中主要类和xml文档之间的对应关系。下面是tinyXML中主要class的类图,反应各个类之间的静态关系。

引用来自tinyXML文档tinyXML的用法

TiXmlBase是所有类的基类,TiXmlNode、TiXmlAttribute两个类都继承来自TiXmlBase类,其中TiXmlNode类指的是所有被<...>...<.../>包括的内容,而xml中的节点又具体分为以下几方面内容,分别是声明、注释、节点以及节点间的文本,因此在TiXmlNode的基础上又衍生出这几个类TiXmlComment、TiXmlDeclaration、TiXmlDocument、TiXmlElement、TiXmlText、TiXmlUnknown,分别用来指明具体是xml中的哪一部分。TiXmlAttribute类不同于TiXmlNode,它指的是在尖括号里面的内容,像<... ***=...>,其中***就是一个属性。这块我具体用一个xml文档说明一下,内容如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phonebook>
  3. <!--one item behalfs one contacted person.-->
  4. <item>
  5. <name>miaomaio</name>
  6. <addr>Shaanxi Xi'an</addr>
  7. <tel>13759911917</tel>
  8. <email>miaomiao@home.com</email>
  9. </item>
  10. <item>
  11. <name>gougou</name>
  12. <addr>Liaoning Shenyang</addr>
  13. <tel>15840330481</tel>
  14. <email>gougou@home.com</email>
  15. </item>
  16. <!--more contacted persons.-->
  17. </phonebook>
  • 像TiXmlDeclaration指的就是<?xml version="1.0" encoding="UTF-8"?>,
  • 像TiXmlComment指的就是<!--one item behalfs one contacted person.-->、 <!--more contacted persons.-->,
  • 像TiXmlDocument指的就是整个xml文档,
  • 像TiXmlElement指的就是<phonebook>、<item>、<name>、<addr>等等这些节点,
  • 像TiXmlText指的就是‘gougou’、‘15840330481’这些夹在<item>与</item>、<name>与</name>、<addr>与</addr>之间的文本文字,
  • 像TiXmlAttribute指的就是<?xml version="1.0" encoding="UTF-8"?>节点中version、encoding,
  • 除此之外就是TiXmlUnknown。

下面是我自己写的一段读xml文件的c++代码,以及再往xml写入一个item的源代码,其中phonebookdata.xml中的内容就是上面xml,仅供参考。

    1. //______________________________________________________________________
    2. // Read information from xml file.
    3. // define xml file path, as follow , we use relative path,
    4. // but you can use absolute path also.
    5. const char* filepath = "phonebookdata.xml";
    6. TiXmlDocument doc(filepath);
    7. bool loadOkay = doc.LoadFile();
    8. // faile to load 'phonebookdata.xml'.
    9. if (!loadOkay) {
    10. printf( "Could not load test file %s. Error='%s'. Exiting.\n", filepath,doc.ErrorDesc() );
    11. exit( 1 );
    12. }
    13. // get dom root of 'phonebookdata.xml', here root should be 'phonebook'.
    14. TiXmlElement* root = doc.RootElement();
    15. printf("_______________________________________\n\n");
    16. printf("     contacted person information      \n\n");
    17. // trace every items below root.
    18. for( TiXmlNode*  item = root->FirstChild( "item" );
    19. item;
    20. item = item->NextSibling( "item" ) ) {
    21. printf("_______________________________________\n");
    22. // read name.
    23. TiXmlNode* child = item->FirstChild();
    24. const char* name = child->ToElement()->GetText();
    25. if (name) {
    26. printf("name:%s\n",name);
    27. } else {
    28. printf("name:\n");
    29. }
    30. // read address.
    31. child = item->IterateChildren(child);
    32. const char* addr = child->ToElement()->GetText();
    33. if (addr) {
    34. printf("addr:%s\n",addr);
    35. } else {
    36. printf("addr:\n");
    37. }
    38. // read telephone no.
    39. child = item->IterateChildren(child);
    40. const char* tel = child->ToElement()->GetText();
    41. if (tel) {
    42. printf("tel:%s\n",tel);
    43. } else {
    44. printf("tel:\n");
    45. }
    46. // read e-mail.
    47. child = item->IterateChildren(child);
    48. const char* email = child->ToElement()->GetText();
    49. if(email) {
    50. printf("email:%s\n",email);
    51. } else {
    52. printf("email:\n");
    53. }
    54. printf("\n");
    55. }
    56. //______________________________________________________________________
    57. //______________________________________________________________________
    58. // Add information to xml file and save it.
    59. TiXmlElement* writeRoot = doc.RootElement();
    60. TiXmlNode* newNode = new TiXmlElement("item");
    61. const TiXmlNode* name4NewNode = new TiXmlElement("name");
    62. newNode->InsertEndChild(*name4NewNode)->InsertEndChild(TiXmlText("pipi"));
    63. const TiXmlNode* addr4NewNode = new TiXmlElement("addr");
    64. newNode->InsertEndChild(*addr4NewNode)->InsertEndChild(TiXmlText("Shaanxi Xianyang"));
    65. const TiXmlNode* tel4NewNode = new TiXmlElement("tel");
    66. newNode->InsertEndChild(*tel4NewNode)->InsertEndChild(TiXmlText("02937310627"));
    67. const TiXmlNode* email4NewNode = new TiXmlElement("email");
    68. newNode->InsertEndChild(*email4NewNode)->InsertEndChild(TiXmlText("pipi@home.com"));
    69. writeRoot->InsertEndChild(*newNode);
    70. doc.SaveFile();
    71. //______________________________________________________________________