QXmlStreamReader说我在XML文件的末尾处于中间位置

时间:2014-08-10 12:46:32

标签: c++ xml qt

你好问题是我正在使用QXmlStreamReader读取XML文件来读取我的日历的约会,但当我从AppointmentSolo切换到AppointmentRepeat时,atEnd()由于某种原因返回true

这是XML文件

<?xml version="1.0" encoding="UTF-8"?>
<AppointmentSolo>
    <Length>1</Length>
    <AppointmentSolo0>
        <Date>10 09 2011</Date>
        <Begin>15:11</Begin>
        <End>23:12</End>
        <Title>Final test</Title>
        <Description>Final countdown</Description>
        <hasNotify>1</hasNotify>
        <notify>17</notify>
    </AppointmentSolo0>
</AppointmentSolo>
<AppointmentRepeat>
    <Length>1</Length>
    <AppointmentRepeat0>
        <Date>08 01 2014</Date>
        <Begin>20:08</Begin>
        <End>23:09</End>
        <Type>MONTHLY</Type>
        <Exceptions>
            <Length>1</Length>
            <Exception0>08 09 2014</Exception0>
        </Exceptions>
        <Title>Repeat test</Title>
        <Description>FooBar</Description>
        <hasNotify>0</hasNotify>
        <notify>0</notify>
    </AppointmentRepeat0>
</AppointmentRepeat>

以下是我的代码中读取它的部分以及问题发生的位置。

if(Rxml.isEndElement() && Rxml.name() == "AppointmentSolo")
{
    qDebug() << Rxml.atEnd() << Rxml.name() << Rxml.hasError();
    Rxml.readNext();
    qDebug() << Rxml.atEnd() << Rxml.name() << Rxml.hasError();
    qDebug() << Rxml.error();
    while(!Rxml.atEnd() && !Rxml.isStartElement())//om aan begin tag te zijn
    {
        Rxml.readNext();
        qDebug() << Rxml.atEnd() << Rxml.name() << Rxml.hasError();
    }
}

这是输出的内容

false "AppointmentSolo" false
true "AppointmentRepeat" true
3

这似乎是一个QXmlStreamReader :: NotWellFormedError 由于读取XML格式不正确,解析器在内部引发了错误。 但是为什么我的XML形成不好呢?

编辑:似乎发生了错误(我添加了“&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;,

1 个答案:

答案 0 :(得分:4)

XML只能有one root element,因此您的XML无效。