tinyxml 库

  • C++读取xml配置文件 - tinyxml2
    • tinyxml基本结构
      • xml文件示例
      • 类结构
      • demo

C++读取xml配置文件 - tinyxml2

tinyxml基本结构

TinyXml 操作XML 常用操作

xml文件示例

animals.xml




    
        Herby
        elephant
        1992-04-23
        
        
    

类结构

tinyxml 库_第1张图片
Tinyxml类结构
  • 1, TiXmlBase 为所有类型的基类, 提供基本的打印功能和部分工具函数;
  • 2, TiXmlNode 为所有节点的父类;
    • 2.1 TiXmlComment 对应 xml 中的注释, 即 ``;
    • 2.2 TiXmlDeclaration 对应 xml 中的文档属性, 即
    • 2.3 TiXmlDocument 为容器类,指代 animals.xml 文档本身;
    • 2.4 TiXmlElement 为xml元素, 可以嵌套, 如 为 xml 元素,可以继续嵌套 ... 等元素;
    • 2.5 TiXmlText 指代 xml 元素的 val, 同 TiXmlAttribute 基本只在生成文档时使用.
    • 2.6 指代 xml 文档中不能正常解析的部分.
  • 3, TiXmlAttribute 对应 xml 中的属性,即 name 和 phone 属性,在生成 xml 文档时用到,读取时没有用到.

demo

#include "tinyxml.h"
#include 

int main()
{
    using namespace std;

    TiXmlDocument docAnml("animals.xml");
    docAnml.LoadFile();
    TiXmlNode* dec = docAnml.FirstChild();
    cout << "xml declaration: "<Value() << endl;
    // 输出 xml declaration: , 没有 declaration 的内容
    dec = dec->NextSibling();
    cout << "xml comment: "<Value() << endl;
    //  xml declaration:  Feldman Family Circus Animals

    TiXmlElement* root = docAnml.RootElement();
    cout << "root element is " << root->Value() << endl;
    // root element is animalList
    TiXmlElement* animal = root->FirstChildElement(); // animal
    TiXmlElement* name   = animal->FirstChildElement(); // name
    cout << "name is : " << name->FirstChild()->Value() << endl;
    name = name->NextSiblingElement(); // species
    name = name->NextSiblingElement(); // date - of - birth
    TiXmlElement* Vet = name->NextSiblingElement(); // veterinarian
    cout << "attribute name : " << Vet->Attribute("name") << endl;
    // ttribute name : Dr. Hal Brown
}

// g++ -o demo_tixml demo_tixml.cpp -I./inc -L./lib -ltinyxml -DTIXML_USE_STL

你可能感兴趣的:(tinyxml 库)