毕业论文中使用的XML读取和制造工具!!!C++ 使用TinyXML解析XML文件

1.介绍

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

  下载TinyXML的网址:http://www.grinninglizard.com/tinyxml/

  使用TinyXML只需要将其中的6个文件拷贝到项目中就可以直接使用了,这六个文件是:

tinyxml.h、tinystr.h、tinystr.cpp、tinyxml.cpp、tinyxmlerror.cpp、tinyxmlparser.cpp。

    

 2.读取XML文件

 如读取文件a.xml:


     
        
            Book store!
        
    
     
        book1
    
     
        book2
    
上面的是要读取的XML文件。

下面的代码用来读取XML文件中的内容。

#include "tinyxml.h"
#include 
#include 

using namespace std;

enum SuccessEnum {FAILURE, SUCCESS};

SuccessEnum loadXML()
{
    TiXmlDocument doc;
    if(!doc.LoadFile("a.xml"))
    {
        cerr << doc.ErrorDesc() << endl;
        return FAILURE;
    }

    TiXmlElement* root = doc.FirstChildElement();
    if(root == NULL)
    {
        cerr << "Failed to load file: No root element." << endl;
        doc.Clear();
        return FAILURE;
    }

    for(TiXmlElement* elem = root->FirstChildElement(); elem != NULL; elem = elem->NextSiblingElement())
    {
        string elemName = elem->Value();
        const char* attr;
        attr = elem->Attribute("priority");
        if(strcmp(attr,"1")==0)
        {
            TiXmlElement* e1 = elem->FirstChildElement("bold");
            TiXmlNode* e2=e1->FirstChild();
            cout<<"priority=1\t"<ToText()->Value()<FirstChild();
            cout<<"priority=2\t"<ToText()->Value()<

毕业论文中使用的XML读取和制造工具!!!C++ 使用TinyXML解析XML文件_第1张图片

3.生成XML文件

 如生成文件b.xml如下所示:


    
    
        
        Some text.
    

生成上面b.xmlL文件代码如下:

#include "tinyxml.h"
#include 
#include 
using namespace std;

enum SuccessEnum {FAILURE, SUCCESS};

SuccessEnum saveXML()
{
    TiXmlDocument doc;

    TiXmlElement* root = new TiXmlElement("root");
    doc.LinkEndChild(root);

    TiXmlElement* element1 = new TiXmlElement("Element1");
    root->LinkEndChild(element1);

    element1->SetAttribute("attribute1", "some value");


    TiXmlElement* element2 = new TiXmlElement("Element2");  ///元素
    root->LinkEndChild(element2);

    element2->SetAttribute("attribute2", "2");
    element2->SetAttribute("attribute3", "3");


    TiXmlElement* element3 = new TiXmlElement("Element3");
    element2->LinkEndChild(element3);

    element3->SetAttribute("attribute4", "4");

    TiXmlText* text = new TiXmlText("Some text.");  ///文本
    element2->LinkEndChild(text);


    bool success = doc.SaveFile("b.xml");
    doc.Clear();

    if(success)
        return SUCCESS;
    else
        return FAILURE;
}

int main(int argc, char* argv[])
{
    if(saveXML() == FAILURE)
        return 1;
    return 0;
}


4.重要函数或类型的说明

  (1)FirstChildElement(const char* value=0):获取第一个值为value的子节点,value默认值为空,则返回第一个子节点。

  (2)NextSiblingElement( const char* _value=0 ) :获得下一个(兄弟)节点。

  (3)LinkEndChild(XMLHandle *handle):添加一个子节点。元素或者文本


你可能感兴趣的:(论文所用代码和程序)