分类: WINDOWS
2016-03-18 10:37:12
QMessageBox *pMessageBox = new QMessageBox;
if(pMessageBox == NULL)
{
return -1;
}
if(xmlPath.size() == 0)
{
pMessageBox->information(this,tr("Error!"),tr("xml is not valid!"));
delete pMessageBox;
r eturn -1;
}
QFile file(xmlPath); //注册xml文件到文件内
if(!file.open(QFile::ReadOnly)) //打开文件
{
pMessageBox->information(this,tr("Error!"),tr("xml can not open!"));
delete pMessageBox;
return -1;
}
QDomDocument doc;
if(!doc.setContent(&file)) //转换为QDomDocument
{
pMessageBox->information(this,tr("Error!"),tr("xml doc create failed!"));
delete pMessageBox;
return -1;
}
SendBuf.clear(); //QString 类的sendbuf
SendBuf = doc.toString(-1); //去掉空格方式转换
file.close();
*iSendLen = ba.size();
delete pMessageBox;
此时,内存里的数据保存图为:
可见,一个< 在内存里占用俩字节。![]()
QByteArray ba = pSendBuf.toLatin1();
*outBuf = (char *)malloc(pSendBuf.size());
memset(*outBuf,0,pSendBuf.size());
strcpy(*outBuf,ba.constData());
可以使得内存编码正确。
究其原因是,QChar方式以双字节编码。char以单字节编码。