我在下面写了简单的代码来读取xml。 但设置内容本身对我来说是失败的。
我正在使用Visual Studio 2010和Qt 4.8.5 lib。
QDomDocument document;
QFile file(str);
if(!file.open(QIODevice::ReadOnly | QIODevice::Text))
{
cout << "Failed to open file";
}
else
{
if(!document.setContent(&file)) // here my sample code is failing and going inside this
{
cout << "Failed to load document";
}
}
file.close();