您现在的位置: 爱51代码网 >> 范文 >> 文章正文
error occurred while parsing element

天要做一个结果列表,就采用了xml,然后就用Qt的DOM来解析,结果发现,每次执行到QDomDocument的setContent方法都要报错,贴代码:

xml文件:recordshistoryrecords.xml
<?xml version="1.0" encoding="UTF-8" ?>
<historyrecords>
    <record id="01">
        <injectamount>100</injectamount>
        <speedtime>0.5</speedtime>
        <psi>1200</psi>
        <time>0.6</time>
        <status>good</status>
    </record>
    <record id="02">
        <injectamount>110</injectamount>
        <speedtime>0.6</speedtime>
        <psi>1100</psi>
        <time>0.3</time>
        <status>bad</status>
    </record>
</historyrecords>


解析xml文件的代码:

void historyrecords::showhisrecords() {
 
    QDomDocument doc;
    QFile file("recordshistoryrecords.xml");
    QString errorStr;
    int errorLine;
    int errorCol;
    //setContent是将指定的内容指定给QDomDocument解析,
    //第一参数可以是QByteArray或者是文件名等
    if(!doc.setContent(&file,true,&errorStr,&errorLine,&errorCol))
    {
        //如果出错,则会进入这里。errorStr得到的是出错说明
        //errorLine和errorCol则是出错的行和列
        qDebug() << errorStr << "line: " << errorLine << "col: " << errorCol;
    }
 
    QDomNode firstNode = doc.firstChild();
 
    qDebug() << qPrintable(firstNode.nodeName()) << qPrintable(firstNode.nodeValue());
 
}


每次报错都会报:
"error occurred while parsing element" line:  1 col:  1

void historyrecords::showhisrecords() {
 
    QDomDocument doc;
    QFile file("recordshistoryrecords.xml");
    file.open(QIODevice::ReadOnly);
    QString errorStr;

[1] [2] 下一页

  • 上一篇文章:

  • 下一篇文章: 没有了
  • 最新文章 热点文章 相关文章
    redhat 2.6 (santigo 5.6) vsftp
    shell如何实现自动填写操作执行下
    linux shell 文件配置sh:color:
    shell script语法一定要加path吗
    SecureCRT如何访问虚拟机vmWare中
    C#如何读取WINDOWS的放大系数
    cximge的图如何存入数据库并提取
    DBGRID控件显示查询结果文本类型
    TChart控件如何把表中右边的系列
    fastreport提示没有找到fr_class
    C#如何读取WINDOWS的放大系数
    cximge的图如何存入数据库并提取
    linux下编译faac及faad2提示 rec
    accept无法获取客户端ip
    TClientDataSet如何避免多人更新
    如何用delphi代码修改XML节点
    vc++ pvoid *用delphi怎么表达
    GIS用百度行政区域的经纬度直接画
    不小心卸载了.net 4 extend,vs2
    C#byte【】里的数转换成string时
    setsockopt failed: EBADF (
    QString has no member name
    QT方向键实现QComBox控件下拉
    qt布局管理器的嵌套和大小调
    qt窗口因为子线程wait()而sh
    Qt unicode转换db2312后显示
    Qt线程里面如何给一个结构体
     



    设为首页 | 加入收藏 | 网站地图 | 友情链接 |