3

それでは、rapidXML を使用して非常に単純な XML ドキュメントを解析します。私がやろうとしているのは、xml ドキュメントのデータを独自のカスタム データ構造に解析することだけです。出発点として、各ノードとデータが含まれていることを出力できるようにしたいと思います。RapidXML のドキュメントは主に、rapidXML を使用した xml ドキュメントの作成に焦点を当てているようですが、ここではそれを読んでみます。ここから始まるのは私のコードです(このプログラムを続行する前のメモとして、もちろんファイルから直接xmlをロードします。冗談を言ってはいけません!)

#include <cstdlib>
#include <iostream>
#include "Page.h" 
#include "HashTable.h"
#include "TimeStamp.h"
#include "AvlTree.h"
#include "./rapidxml/rapidxml.hpp"
#include "./rapidxml/rapidxml_print.hpp"
#include <fstream>
#include <sstream>
#include <vector>


using namespace std;
using namespace rapidxml;

char s[] = "<?xml version='1.0' encoding='utf-8'?>"
    "<people>"
        "<person gender='female'>"
            "<fname>Morgan</fname>"
            "<lname>Saxer</lname>"
        "</person>"
        "<person gender='male'>"
            "<fname>Tyler</fname>"
            "<lname>Springer</lname>"
        "</person>"
    "</people>";

void traverse_xml(const std::string& input_xml)
{
    vector<char> xml_copy(input_xml.begin(), input_xml.end());
    xml_copy.push_back('\0');

    xml_document<> doc;
    doc.parse<parse_declaration_node | parse_no_data_nodes>(&xml_copy[0]);

    string encoding = doc.first_node()->first_attribute("encoding")->value();
    cout << "encoding: " << encoding << endl;

    xml_node<>* cur_node = doc.first_node("people");

    string person_type = cur_node->first_node("person")->first_attribute("gender")->value();
    cout << "Gender: " << person_type << endl;

    cur_node = cur_node->first_node("person")->first_node("fname");
    string attr2 = cur_node->value();
    cout << "fname: " << attr2 << endl;

    cur_node = cur_node->next_sibling("lname");
    attr2 = cur_node->value();
    cout << "lname: " << attr2 << endl;

    //next person node begins here, this is where I am having the problem

    cur_node = cur_node->next_sibling("person"); //this doesn't work, and I don't know what command to use instead
    attr2 = cur_node->first_attribute("gender")->value();
    cout << "Gender: " << attr2 << endl;
}

int main(int argc, char** argv) {

   traverse_xml(s);
       return 0;
}

それでも、Im が取得する出力は次のとおりです。

encoding: utf-8 
gender: female
fname: Morgan
lname: Saxer

以上です。私が探しているのはこれです:

encoding: utf-8
gender: female
fname: Morgan
lname: Saxer
gender: male

それが次の人ノードの始まりになるからです。

基本的に、私の質問はこれに要約できると思います。RapidXML には、ある種の「1 レベル上」の機能はありますか? next_sibling() は、同じレベルの次のノードに移動しますが、いずれかのノードを掘り下げると、元に戻る明白な方法はないようです。誰もそのようなことをする方法を知っていますか?

編集:
提案されたソリューションを使用した後、私のコードは次のようになります。

 void traverse_xml(const std::string& input_xml)
 {
    vector<char> xml_copy(input_xml.begin(), input_xml.end());
    xml_copy.push_back('\0');

    xml_document<> doc;
    doc.parse<parse_declaration_node | parse_no_data_nodes>(&xml_copy[0]);

    xml_node<>* people = doc.first_node("people");
    xml_node<>* person = people->first_node("person");

    while (person != NULL)
    {
      cout << "Gender:" << person->first_attribute("gender")->value() << endl;
      cout << "fname: " << person->first_node("fname")->value() << endl;
      cout << "lname: " << person->first_node("lname")->value() << endl;
      person = person->next_sibling("person");
    }
 }

次のように正しく出力されるようになりました。

gender:female
fname: Morgan
lname: Saxer
gender:male
fname: Tyler
lname: Springer
4

1 に答える 1

1

を使用cur_node->parent()してレベルを「上げる」ことができますが、個人的には代わりに次のような方法をお勧めします:-

 xml_node<>* people = doc.first_node("people");
 xml_node<>* person = people->first_node("person");

 while (person != NULL)
 {
  ... output the person
  person = person->next_sibling("person"); 
 } 
于 2012-11-18T20:29:12.720 に答える