我正在尝试用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);
}
我的意思是:
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();
}
}