如何使用pugixml读取节点?

时间:2015-06-02 10:18:37

标签: c++ xml pugixml

我刚刚下载了pugixml库,我正在努力使其适应我的需求。它主要面向我不使用的DOM风格。我存储的数据如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<profile>
    <points>
        <point>
            <index>0</index>
            <x>0</x>
            <y>50</y>
        </point>
        <point>
            <index>1</index>
            <x>2</x>
            <y>49.9583</y>
        </point>
        <point>
            <index>2</index>
            <x>12</x>
            <y>50.3083</y>
        </point>
     </points>
</profile>

Pugixml guide说:

  

将数据存储为某个节点的文本内容是很常见的 - 即   这是一个节点。在这种情况下,    node没有值,而是有一个子节点   输入值为&#34的node_pcdata;这是一个节点&#34;。 pugixml提供   child_value()和text()辅助函数来解析这些数据。

但是我遇到使用这些方法的问题,我没有得到节点值。

#include "pugixml.hpp"

#include <string.h>
#include <iostream>

int main()
{
    pugi::xml_document doc;
    if (!doc.load_file("/home/lukasz/Programy/eclipse_linux_projects/xmlTest/Debug/pidtest.xml"))
        return -1;

    pugi::xml_node points = doc.child("profile").child("points");

    for (pugi::xml_node point = points.first_child(); point; point = points.next_sibling())
    {
        // ?
    }


    return 0;
}

如何读出里面的索引,x和y值?我会帮助所有人。

1 个答案:

答案 0 :(得分:2)

快速入门页面中记录了几种方法:

我可以推荐Xpath吗?

#include <pugixml.hpp>
#include <iostream>

int main()
{
    pugi::xml_document doc;

    if (doc.load_file("input.txt")) {
        for (auto point : doc.select_nodes("//profile/points/point")) {
            point.node().print(std::cout, "", pugi::format_raw);
            std::cout << "\n";
        }
    }
}

打印

<point><index>0</index><x>0</x><y>50</y></point>
<point><index>1</index><x>2</x><y>49.9583</y></point>
<point><index>2</index><x>12</x><y>50.3083</y></point>