0

我有一个 BYTE 类型,它在 windows.h 标头中定义如下:

    typedef unsigned char BYTE;

然后我在数据库中有一些字段,我将其作为 QString 并将它们转换为 QByteArray。

目前我有:

        QString str = "0x168de78"; //some info from the database

        QByteArray tempB = QByteArray::fromHex(str.toAscii().toHex());

        BYTE *sequence = (BYTE*)strdup(tempB.data());

在这种情况下,“0x168de78”代表我期望从数据库中获取的信息样本。

我需要将 QString 从字面上转换为 BYTE,以便以后可以使用它。

如果我告诉应用程序给我 sequence 和 tempB.data() 的值,我会得到类似的东西:

0x867dc8 "0x168de78" 
0x867de0 "0x168de78" 
0x867df8 "0x168de78" 

所以 tempB.data() 没问题,但序列不是。我究竟做错了什么?

4

1 回答 1

1
QString str = "0x168de78"; //some info from the database

QByteArray tempB =  QByteArray::fromHex(str.toAscii());//or 
//QByteArray tempB =  str.toAscii().toHex();

BYTE *sequence = (BYTE*)strdup(tempB.data());

Update: If u can use STL

unsigned int value;   
std::stringstream ss;
ss << std::hex << "0x168de78";
ss >> x;
于 2012-12-13T12:45:59.210 回答