美文网首页C++程序员
如何在C++中使用tinyXML2读取xml文件

如何在C++中使用tinyXML2读取xml文件

作者: 陈码工 | 来源:发表于2017-08-14 17:54 被阅读0次

    1. 准备

    访问https://github.com/leethomason/tinyxml2
    下载zip压缩包回本地, 解压后打开文件夹

    image.png

    其中, tinyxml2.h, tinyxml2.cpp是我们需要的核心文件.

    打开tinyxml2-master\tinyxml2文件夹, 双击tinyxml2.sln用VS2017打开solution. 由于这个solution是用比较早的VisualStudio创建的, 我们需要对solution和每个projects都右键, 选择"Retarget Projects", 否则有可能出错.

    接下来, 如图, 在test文件夹中, 直接删掉原先的test.cpp, 建立MyTest.cpp, 准备阶段大功告成;


    image.png

    2. 创建xml文件

    创建tinyxml2-master\tinyxml2\test.xml

    <?xml version="1.0"?>
    <info>
        <username>Tom</username>
        <password>123456</password>
        <phone>13612347777</phone>
        <salary>7500</salary>
    </info>
    

    3. 编写MyTest.cpp

    打开刚才创建好的MyTest.cpp, 编写代码

    #include "..\tinyxml2.h"
    #include <iostream>
    using namespace tinyxml2;
    using namespace std;
    
    void example1()
    {
        XMLDocument doc;
        doc.LoadFile("test.xml");
        XMLElement *info = doc.RootElement();  // info为根节点
        const char* username = info->FirstChildElement("username")->GetText();  //以名字获取根节点下的子节点
        const char* password = info->FirstChildElement("password")->GetText();
        const char* phone = info->FirstChildElement("phone")->GetText();
        const char* salary_str = info->FirstChildElement("salary")->GetText();
        int salary = atoi(salary_str);  // char* to int transformation, 作转型, 很常用~~
        printf("info.username: %s\n", username);
        printf("info.password: %s\n", password);
        printf("info.phone: %s\n", phone);
        printf("info.salary: %d\n", salary);
    
        system("pause");
    }
    
    int main()
    {
        example1();
        return 0;
    }
    

    应用tinyXML2其实很简单, 如上的例子已经能够应对50%以上的场景了.

    其中比较值得注意的是atoi的应用, 因为直接从GetText()方法得到的都是const char*类型, 因此需要借助atoi(str)来转化为int型.

    要把tinyXML2应用到我们已有的项目中, 只需要复制tinyxml2.h, tinyxml2.cpp两个核心文件, 然后在需要使用的cpp文件中引入tinyxml2.h文件, 即可开始正常使用.

    参考

    http://blog.csdn.net/educast/article/details/12908455

    相关文章

      网友评论

        本文标题:如何在C++中使用tinyXML2读取xml文件

        本文链接:https://www.haomeiwen.com/subject/yxaurxtx.html