tinyxml学习5

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

读取和设置xml配置文件是最常用的操作,试用了几个C++的XML解析器,个人感觉TinyXML是使用起来最舒服的,因为它的API接口和Java的十分类似,面向对象性很好。

TinyXML是一个开源的解析XML的解析库,能够用于C++,能够在Windows或Linux中编译。这个解析库的模型通过解析XML文件,然后在内存中生成DOM模型,从而让我们很方便的遍历这棵XML树。

DOM模型即文档对象模型,是将整个文档分成多个元素(如书、章、节、段等),并利用树型结构表示这些元素之间的顺序关系以及嵌套包含关系。

如下是一个XML片段:

tinyxml学习5   <Persons>

tinyxml学习5        <Person ID="1">

tinyxml学习5            <name>周星星</name>

tinyxml学习5            <age>20</age>

tinyxml学习5        </Person>

tinyxml学习5        <Person ID="2">

tinyxml学习5            <name>白晶晶</name>

tinyxml学习5            <age>18</age>

tinyxml学习5        </Person>

tinyxml学习5    </Persons>

tinyxml学习5

在TinyXML中,根据XML的各种元素来定义了一些类:

TiXmlBase:整个TinyXML模型的基类。

TiXmlAttribute:对应于XML中的元素的属性。

TiXmlNode:对应于DOM结构中的节点。

TiXmlComment:对应于XML中的注释

TiXmlDeclaration:对应于XML中的申明部分,即<?versiong="1.0" ?>。

TiXmlDocument:对应于XML的整个文档。

TiXmlElement:对应于XML的元素。

TiXmlText:对应于XML的文字部分

TiXmlUnknown:对应于XML的未知部分。

TiXmlHandler:定义了针对XML的一些操作。

TinyXML是个解析库,主要由DOM模型类(TiXmlBase、TiXmlNode、TiXmlAttribute、TiXmlComment、TiXmlDeclaration、TiXmlElement、TiXmlText、TiXmlUnknown)和操作类(TiXmlHandler)构成。它由两个头文件(.h文件)和四个CPP文件(.cpp文件)构成,用的时候,只要将(tinyxml.h、tinystr.h、tinystr.cpp、tinyxml.cpp、tinyxmlerror.cpp、tinyxmlparser.cpp)导入工程就可以用它的东西了。如果需要,可以将它做成自己的DLL来调用。举个例子就可以说明一切。。。

对应的XML文件:

tinyxml学习5<Persons>

tinyxml学习5    <Person ID="1">

tinyxml学习5        <name>phinecos</name>

tinyxml学习5        <age>22</age>

tinyxml学习5    </Person>

tinyxml学习5</Persons>

tinyxml学习5

读写XML文件的程序代码:

tinyxml学习5#include <iostream>

tinyxml学习5#include "tinyxml.h"

tinyxml学习5#include "tinystr.h"

tinyxml学习5#include <string>

tinyxml学习5#include <windows.h>

tinyxml学习5#include <atlstr.h>

tinyxml学习5using namespace std;

tinyxml学习5

tinyxml学习5CString GetAppPath()

tinyxml学习5{//获取应用程序根目录

tinyxml学习5    TCHAR modulePath[MAX_PATH];

tinyxml学习5    GetModuleFileName(NULL, modulePath, MAX_PATH);

tinyxml学习5    CString strModulePath(modulePath);

tinyxml学习5    strModulePath = strModulePath.Left(strModulePath.ReverseFind(_T('\\')));

tinyxml学习5    return strModulePath;

tinyxml学习5}

tinyxml学习5

tinyxml学习5bool CreateXmlFile(string& szFileName)

tinyxml学习5{//创建xml文件,szFilePath为文件保存的路径,若创建成功返回true,否则false

tinyxml学习5    try

tinyxml学习5    {

tinyxml学习5        //创建一个XML的文档对象。

tinyxml学习5        TiXmlDocument *myDocument = new TiXmlDocument();

tinyxml学习5        //创建一个根元素并连接。

tinyxml学习5        TiXmlElement *RootElement = new TiXmlElement("Persons");

tinyxml学习5        myDocument->LinkEndChild(RootElement);

tinyxml学习5        //创建一个Person元素并连接。

tinyxml学习5        TiXmlElement *PersonElement = new TiXmlElement("Person");

tinyxml学习5        RootElement->LinkEndChild(PersonElement);

tinyxml学习5        //设置Person元素的属性。

tinyxml学习5        PersonElement->SetAttribute(");

tinyxml学习5        //创建name元素、age元素并连接。

tinyxml学习5        TiXmlElement *NameElement = new TiXmlElement("name");

tinyxml学习5        TiXmlElement *AgeElement = new TiXmlElement("age");

tinyxml学习5        PersonElement->LinkEndChild(NameElement);

tinyxml学习5        PersonElement->LinkEndChild(AgeElement);

tinyxml学习5        //设置name元素和age元素的内容并连接。

tinyxml学习5        TiXmlText *NameContent = new TiXmlText("周星星");

tinyxml学习5        TiXmlText *AgeContent = ");

tinyxml学习5        NameElement->LinkEndChild(NameContent);

tinyxml学习5        AgeElement->LinkEndChild(AgeContent);

tinyxml学习5        CString appPath = GetAppPath();

tinyxml学习5        string seperator = "\\";

tinyxml学习5        ) +seperator+szFileName;

tinyxml学习5        myDocument->SaveFile(fullPath.c_str());//保存到文件

tinyxml学习5    }

tinyxml学习5    catch (string& e)

tinyxml学习5    {

tinyxml学习5        return false;

tinyxml学习5    }

tinyxml学习5    return true;

tinyxml学习5}

tinyxml学习5

tinyxml学习5bool ReadXmlFile(string& szFileName)

tinyxml学习5{//读取Xml文件,并遍历

tinyxml学习5    try

tinyxml学习5    {

tinyxml学习5        CString appPath = GetAppPath();

tinyxml学习5        string seperator = "\\";

tinyxml学习5        ) +seperator+szFileName;

tinyxml学习5        //创建一个XML的文档对象。

tinyxml学习5        TiXmlDocument *myDocument = new TiXmlDocument(fullPath.c_str());

tinyxml学习5        myDocument->LoadFile();

tinyxml学习5        //获得根元素,即Persons。

tinyxml学习5        TiXmlElement *RootElement = myDocument->RootElement();

tinyxml学习5        //输出根元素名称,即输出Persons。

tinyxml学习5        cout << RootElement->Value() << endl;

tinyxml学习5        //获得第一个Person节点。

tinyxml学习5        TiXmlElement *FirstPerson = RootElement->FirstChildElement();

tinyxml学习5        //获得第一个Person的name节点和age节点和ID属性。

tinyxml学习5        TiXmlElement *NameElement = FirstPerson->FirstChildElement();

tinyxml学习5        TiXmlElement *AgeElement = NameElement->NextSiblingElement();

tinyxml学习5        TiXmlAttribute *IDAttribute = FirstPerson->FirstAttribute();

tinyxml学习5        //输出第一个Person的name内容,即周星星;age内容,即;ID属性,即。

tinyxml学习5        cout << NameElement->FirstChild()->Value() << endl;

tinyxml学习5        cout << AgeElement->FirstChild()->Value() << endl;

tinyxml学习5        cout << IDAttribute->Value()<< endl;

tinyxml学习5    }

tinyxml学习5    catch (string& e)

tinyxml学习5    {

tinyxml学习5        return false;

tinyxml学习5    }

tinyxml学习5    return true;

tinyxml学习5}

tinyxml学习5int main()

tinyxml学习5{

tinyxml学习5    string fileName = "info.xml";

tinyxml学习5    CreateXmlFile(fileName);

tinyxml学习5    ReadXmlFile(fileName);

tinyxml学习5}

tinyxml学习5