私は基本的に、xml ファイルの内容を読み込んで出力したいだけです。
私の xml ファイル (tree_test.xml) は次のようになります。
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<price>44.95</price>
</book>
<book id="bk102">
<author>Ralls, Kim</author>
<title>Midnight Rain</title>
<price>5.95</price>
</book>
</catalog>
私の C++ コード (Windows で VS 2012 を使用) は次のようになります。
using namespace rapidxml;
int main(){
xml_document<> doc;
std::ifstream theFile ("tree_test.xml");
std::vector<char> buffer((std::istreambuf_iterator<char>(theFile)), std::istreambuf_iterator<char>());
buffer.push_back('\0');
doc.parse<0>(&buffer[0]);
xml_node<> *node = doc.first_node();
xml_node<> *child = node->first_node();
xml_node<> *child2 = child->first_node();
while(node != 0) {
cout << node->name() << endl;
while (child != 0){
cout << child->name() << " " << child->value() << endl;
while (child2 != 0){
cout << child2->name() << " " << child2->value() << endl;
child2 = child2->next_sibling();
}
child = child->next_sibling();
}
node = node->next_sibling();
}
system("pause");
return EXIT_SUCCESS;
}
私の出力:
catalog
book
author Gambardella, Matthew
title XML Developer's Guide
price 44.95
book
私の望む出力:
catalog
book
author Gambardella, Matthew
title XML Developer's Guide
price 44.95
book
author Ralls, Kim
title Midnight Rain
price 5.95
2 番目の本の要素を印刷することができないようです。それはおそらく私がループしている方法と関係があります。簡単なことだと思いますが、しばらく行き詰まっています。助けてください。前もって感謝します。