我尝试将setContent()
用于QDomDocument对象时遇到问题。
以下是代码:
QFile f("database.xml");
if(!f.open(QFile::ReadOnly))
cout << "Error: file not correctly opened." << endl;
QDomDocument doc("database");
QString errorStr;
int errorLine;
int errorColumn;
if(!doc.setContent(&f, false, &errorStr, &errorLine, &errorColumn)){
cout << "Error: " << errorStr.toStdString() << " at line " << errorLine << " column " << errorColumn << endl;
}
f.close();
并打印:
Error: unexpected end of file at line 1 column 1
我该如何解决这个错误?
以下是文件的内容:
<?xml version="1.0" encoding="UTF-8"?>
<myLibrary>
<movie>
<price>5</price>
<title>Star Wars 4</title>
<register>George Lukas</register>
<year>1977</year>
<durate>192</durate>
</movie>
<movie>
<price>8</price>
<title>Rambo 1</title>
<register>Joe Clarkson</register>
<year>2012</year>
<durate>167</durate>
</movie>
</myLibrary>
答案 0 :(得分:1)
所以问题是XML文件的路径无效。
如果您尝试打开与可执行文件位于同一目录中的文件,请使用返回所需路径的QCoreApplication::applicationDirPath()
方法。否则将使用进程工作目录(并不总是可执行目录)。
QFile f(QCoreApplication::applicationDirPath() + "/database.xml");
我猜你没注意到Error: file not correctly opened.
警告,是吗?