我试图用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);
}
答案 0 :(得分: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();
}
}