0

我正在尝试用 c++ 重写一个用 python 编写的应用程序。

它所做的只是打开一个串口并读取一些xml。在 python 中,我使用 pyserial 来读取 xml 和 beautifulsoup 来检索信息。输出是这样的。

<file><property>xx32</property></file>

现在我使用 qextserialport 从串口读取,我得到的 xml 是这样的。

<
fil
e>
<prope
rty>xx32
</prop
erty>
</
file>

我的问题是我无法解析这样的 xml。我得到错误。

编辑:


Qextserialport 以一组不固定的字节从串行端口读取数据。那么如何将我的 xml 连接成一个字符串呢?我每 4-5 秒从串行端口获取一个 xml 字符串。

这是我的代码

this->port = new QextSerialPort(com_port,QextSerialPort::EventDriven);
port->setBaudRate(BAUD57600);
port->setFlowControl(FLOW_OFF);
port->setParity(PAR_NONE);
port->setDataBits(DATA_8);
port->setStopBits(STOP_1);
port->setTimeout(0);

if (port->open(QIODevice::ReadOnly) == true)
{
    //qDebug()<< "hello";
    connect(port,SIGNAL(readyRead()),this,SLOT(onReadyRead()));
}

以及实际从串口读取的函数

void CurrentCost::onReadyRead()
{
    QByteArray bytes;
    bytes = port->readAll();

    //qDebug() << "bytes read:" << bytes.size();
    //qDebug() << "bytes:" << bytes;
    ui->textBrowser->append(bytes);

}
4

1 回答 1

0

我的意思是这样的:

class CurrentCost...{

private:
    QByteArray xmlData;
private slots:
   void onReadyRead();

};

void CurrentCost::onReadyRead()
{
    xmlData.append(port->readAll());

    if(xmlData.endsWith(/*what your port sending then xml is over&*/))
    {
        ui->textBrowser->append(xmlData);
        xmlData.clear();
    }

}
于 2011-07-09T17:00:44.650 回答