0

我使用 QXmlStreamWriter 生成一个 xml 文件。该文件如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<pedestrianinfo>
    <pedestrian uuid="2112e2ed-fc9b-41e8-bbcb-b44ad78bde11">
        <module>11.1208</module>
        <direction>4</direction>
        <row>5</row>
        <column>71</column>
    </pedestrian>
    <pedestrian uuid="1aabb9c1-4aa7-4f47-9542-36d2dfaa26e4">
        <module>1.48032</module>
        <direction>4</direction>
        <row>67</row>
        <column>31</column>
    </pedestrian>

...

</pedestrianinfo>

然后我尝试通过 QDomDocument 读取内容。我的代码如下所示:

xmlReader *xp = new xmlReader(QString("D:\\0T.xml"));
    if(xp->openFile()) {
        if(xp->isGetRootIndex()) {
            xp->parseRootIndexElement();
        }
        else
            cout<<"Unable to get root index."<<endl;
    }

这是 isGetRootIndex():

bool xmlReader::isGetRootIndex()
{
    doc.setContent(&file,false);
    root = doc.documentElement();
    if(root.tagName() == getRootIndex()) //rootIndex=="pedestrianinfo"
        return true;
    return false;
}

这是 parseRootIndexElement():

void xmlReader::parseRootIndexElement()
{
    QDomNode child = root.firstChild();
    while(!child.isNull()) {
        if(child.toElement().tagName() == getTagNameP())  //"childTagName=="pedestrian"
            parseEntryElement(child.toElement());
        qDebug()<<"module="<<module<<" direction="<<direction<<" row="<<row<<" column="<<column;
        child = child.nextSibling();
    }
}

parseEntryElement(const QDomElement &element) 是一个函数,用于获取每个标签中的信息并将它们保存到模块等变量中。但是,每次我运行我的代码时,只有 xml 文件的第一个子文件可能是 qDebug*ed*。似乎在执行 child.nextSibling() 之后,child 变为 null。为什么它没有得到下一个行人信息?

4

1 回答 1

0

根据我在文档中看到的内容,我看起来是正确的。也许 parseEntryElement 意外地推进了迭代器?

于 2012-11-13T18:42:52.470 回答