我编写了下面的代码以获取CDATA节点值,我得到了节点的名称,但值是空白的。
我将解析Flags更改为parse_full,但它也没有用。
如果我手动删除“<![CDATA [”和“]]>”从XML中,它按预期提供值,但在解析之前删除它不是一个选项。
代码:
#include <iostream>
#include <vector>
#include <sstream>
#include "rapidxml/rapidxml_utils.hpp"
using std::vector;
using std::stringstream;
using std::cout;
using std::endl;
int main(int argc, char* argv[]) {
rapidxml::file<> xmlFile("test.xml");
rapidxml::xml_document<> doc;
doc.parse<rapidxml::parse_full>(xmlFile.data());
rapidxml::xml_node<>* nodeFrame = doc.first_node()->first_node()->first_node();
cout << "BEGIN\n\n";
do {
cout << "name: " << nodeFrame->first_node()->name() << "\n";
cout << "value: " << nodeFrame->first_node()->value() << "\n\n";
} while( nodeFrame = nodeFrame->next_sibling() );
cout << "END\n\n";
return 0;
}
XML:
<rss version="2.0" xmlns:g="http://base.google.com/ns/1.0" xmlns:c="http://base.google.com/cns/1.0">
<itens>
<item>
<title><![CDATA[Title 1]]></title>
<g:id>34022</g:id>
<g:price>2173.00</g:price>
<g:sale_price>1070.00</g:sale_price>
</item>
<item>
<title><![CDATA[Title 2]]></title>
<g:id>34021</g:id>
<g:price>217.00</g:price>
<g:sale_price>1070.00</g:sale_price>
</item>
</itens>
</rss>
答案 0 :(得分:5)
当您使用CDATA
时,RapidXML将其解析为层次结构中外部元素下方的单独节点。
您的代码使用nodeFrame->first_node()->name()
正确获取“标题”,但是 - 因为CDATA
文本位于单独的元素中,您需要使用它来提取值:
cout << "value: " <<nodeFrame->first_node()->first_node()->value();