QTextStream :: readAll返回空QString

时间:2015-10-05 11:14:45

标签: c++ qt qtextstream

我试图遍历特定XML节点的所有子节点并加入其name属性。结构:

<params>
    <param name="BLAH" />
</params>

期望的结果:

PARAM1='$PARAM1',PARAM2='$PARAM2',PARAM3='$PARAM3'[...]

代码:

    // Create empty text stream
    QTextStream paramNames("");
    // Start looping child by child
    QDomElement child = params.firstChildElement();
    bool firstIteration = true;
    while( !child.isNull() ) {  
        QString param_name = child.attribute("n");
        // Skips empty names
        if(param_name.length()>0) {
          // This prevents both leading and trailing comma
          if(!firstIteration)
              paramNames<<",";
          else
              firstIteration = false;
          // This should fill in one entry
          paramNames<<param_name<<"='$"<<param_name<<'\'';
        }
        child = child.nextSiblingElement();
    }

现在即使调试人员说如果我这样做

QString paramNamesSTR = paramNames.readAll();

paramNamesSTR是一个空字符串。但是,如果我使用std库,一切正常:

    std::stringstream paramNames("");
    QDomElement child = params.firstChildElement();
    bool firstIteration = true;
    while( !child.isNull() ) {  
        std::string param_name = child.attribute("n").toUtf8().constData();
        if(param_name.length()>0) {
          if(!firstIteration)
              paramNames<<",";
          else
              firstIteration = false;
          paramNames<<param_name<<"='$"<<param_name<<'\'';
        }
        child = child.nextSiblingElement();
    }
    QString paramNamesSTR = QString::fromStdString( paramNames.str() );

那么区别是什么?为什么Qt QTextStream返回空字符串?我真的更愿意与使用过的库保持一致,因此使用QTextStream而不是std::stringstream,虽然在声望上,我更喜欢前者。

1 个答案:

答案 0 :(得分:3)

为了能够使用QTextStream,你需要传递一些东西来操作(流本身不存储任何数据,它只是在字符串或iodevice上运行)。传递一个字符串文字不是正确的做法。不同之处在于,当您创建std::stringstream并将其传递给字符串文字时,会自动创建基础流缓冲区,并将该文字用作缓冲区的初始值。在QTextStream的情况下,它创建了一个包含传递的文字的只读流。创建QTextStream的正确方法是首先创建缓冲区,然后创建流以在该缓冲区上运行,例如:

QString string; //you can also use a QByteArray, or any QIODevice
QTextStream stream(&string);