QT 16진수 데이터 전송

1463 단어
전재자: 원작자가 누군지 몰라요. 많은 곳에 이 코드가 있어요. 어쨌든 이 코드는 다른 사람에게 전재된 거예요.
QT는 16진수를 받는 것이 비교적 간단하며, 이진수 데이터를 받은 후 바로 toHex () 로 표시할 수 있다.
QByteArray hexData = buffer.toHex();
        qDebug()<

 
QT에서 16진수 데이터를 전송합니다.
여기에 작은 문제가 하나 있다. 바로 인터넷에 있는 이 코드는 toAscii () 함수를 사용하지만 이 함수는 QT5에 있다.4중에 없어졌으니 toLain1()로 바꾸면 됩니다.
QByteArray SockerServer::QString2Hex(QString str)
{
    QByteArray senddata;
    int hexdata,lowhexdata;
    int hexdatalen = 0;
    int len = str.length();
    senddata.resize(len/2);
    char lstr,hstr;
    for(int i=0; i= len)
            break;
        lstr = str[i].toLatin1();
        hexdata = ConvertHexChar(hstr);
        lowhexdata = ConvertHexChar(lstr);
        if((hexdata == 16) || (lowhexdata == 16))
            break;
        else
            hexdata = hexdata*16+lowhexdata;
        i++;
        senddata[hexdatalen] = (char)hexdata;
        hexdatalen++;
    }
    senddata.resize(hexdatalen);
    return senddata;
}

char SockerServer::ConvertHexChar(char ch)
{
    if((ch >= '0') && (ch <= '9'))
        return ch-0x30;
    else if((ch >= 'A') && (ch <= 'F'))
        return ch-'A'+10;
    else if((ch >= 'a') && (ch <= 'f'))
        return ch-'a'+10;
    else return (-1);
}

좋은 웹페이지 즐겨찾기