十六进制输出到字符串c++

HEX output to String c++

我正在尝试将 printf 输出转换为 std::string 变量。我有以下 for 循环:

for(i=0; i<53; i++) {
    printf("%02X", pbRecvBuffer[i]);
}

此循环的输出是十六进制值,如:01445420434F2..。我的第一次尝试是使用 stringstream 如下:

stringstream os;

for(i=0; i<53; i++) 
    os << std::hex << pbRecvBuffer[i];

std::cout << os << std::endl;

不幸的是,这给了我错误的结果。也许有人直接看到它可以帮助我。

一般来说,十六进制和整数流是一个好主意:

std::ios_base::fmtflags f(out.flags()); // Init

out <<std::hex << std::setfill('0') << std::setw(2) << (unsigned int)pbRecvBuffer[i];

out.flags(f); // restore

一般 out 是从 std::cout、std::ostringstream、std::basic_ostream 等派生的对象