我编写了下面的代码来获得CDATA节点的值,我得到了节点的名称,但是值是空的。
我将解析标志更改为parse_full,但它也不起作用。
如果我手动从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>
发布于 2014-01-09 20:24:54
使用CDATA时,RapidXML会将其解析为层次结构中的外部元素“下面”的单独节点。
您的代码通过使用nodeFrame->first_node()->name()正确地获得“标题”,但是-由于CDATA文本位于一个单独的元素中,因此需要使用它提取值:
cout << "value: " <<nodeFrame->first_node()->first_node()->value();
https://stackoverflow.com/questions/21029167
复制相似问题