我正在尝试使用web服务获取互联网时间,该服务为我提供了一个xml。现在,我正在尝试使用pugixml解析xml文件。XML返回
<?xml version="1.0" encoding="ISO-8859-1" ?>
<timezone xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.earthtools.org/timezone.xsd">
<version>1.0</version>
<location>
<latitude>22.5667</latitude>
<longitude>88.3667</longitude>
</location>
<offset>5.5</offset>
<suffix>E*</suffix>
<localtime>20 Jul 2014 14:48:10</localtime>
<isotime>2014-07-20 14:48:10 +0530</isotime>
<utctime>2014-07-20 09:18:10</utctime>
<dst>Unknown</dst>
</timezone>
我试图解析它的方式。
pugi::xml_document doc;
if (!doc.load_file("time.xml")) return -1;
pugi::xml_node tools = doc.child("timezone").child("localtime");
//[code_traverse_iter
for (pugi::xml_node_iterator it = tools.begin(); it != tools.end(); ++it)
{
std::cout << "Tool:";
for (pugi::xml_attribute_iterator ait = it->attributes_begin(); ait != it->attributes_end(); ++ait)
{
std::cout << " " << ait->name() << "=" << ait->value();
}
std::cout << std::endl;
}
return 0;
我需要获取这个节点的值
<localtime>20 Jul 2014 14:48:10</localtime>
请帮我渡过难关。
p.S:我正在使用的网络服务可以找到http://www.earthtools.org/webservices.htm,希望它能帮助到别人。
我知道我可以做一个简单的文件操作来获取数据,因为xml没有那么长,但我仍然想使用解析器。
const char* localtime = doc.child("timezone").child("localtime").text().get();
或
const char* localtime = doc.child("timezone").child_value("localtime");