我正在使用tinyxml2,我知道如何获取属性字符串,但我也希望得到整数,浮点数和布尔值。所以,我有这个代码:
#include <iostream>
#include <fstream>
#include <tinyxml2.h>
using namespace std;
using namespace tinyxml2;
int main()
{
XMLDocument doc;
doc.LoadFile("sample.xml");
XMLElement *titleElement = doc.FirstChildElement("specimen");
int f = -1;
if (!titleElement->QueryIntAttribute("age", &f))
cerr << "Unable to get value!" << endl;
cout << f << endl;
return 0;
}
sample.xml是:
<?xml version=1.0?>
<specimen>
<animal>
Dog
</animal>
<age>
12
</age>
</specimen>
别担心,xml文件只是一个虚假的样本,没什么真实的!
无论如何,我仍然无法获得属于'age'的整数值。如果这不起作用,那么我应该如何使用tinyxml2从xml文档获取整数和浮点数呢?
答案 0 :(得分:1)
在你的if语句中,你应该测试这样的失败:
if (titleElement->QueryIntAttribute("age", &f) != TIXML_SUCCESS )
答案 1 :(得分:1)
我相信,使用的正确方法是QueryIntText
而不是QueryIntAttribute
- 您正在尝试获取XML节点的值,而不是属性。
有关详细信息和用法,请参阅文档:http://www.grinninglizard.com/tinyxml2docs/classtinyxml2_1_1_x_m_l_element.html#a8b92c729346aa8ea9acd59ed3e9f2378
答案 2 :(得分:0)
这就是我解决问题的方法:
#include <iostream>
#include <fstream>
#include <tinyxml2.h>
using namespace std;
using namespace tinyxml2;
int main()
{
XMLDocument doc;
doc.LoadFile("sample.xml");
auto age = doc.FirstChildElement("specimen")
->FirstChildElement("age");
int x = 0;
age->QueryIntText(&x);
cout << x << endl;
return 0;
}
我只想说我的xml术语错了所以我将属性与文本混淆了。无论如何,这就是我从xml doc获得整数值的方式。