在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
直接上代码 所需头文件 : <string>, <stdio.h>, <stdint.h> 1 std::string ByteStream2String(const uint8_t *pByteStream, size_t iStreamLen) 2 { 3 std::string sRet = ""; 4 char curr_byte[3]; 5 6 for (size_t idx = 0; idx < iStreamLen; ++idx) 7 { 8 memset(curr_byte, 0, 3); 9 sprintf_s(curr_byte, "%02hhX", pByteStream[idx]); 10 11 sRet += curr_byte; 12 sRet += " "; 13 } 14 15 return sRet; 16 } 测试如下 运行结果如下
以上, 如有错误疏漏, 欢迎指正 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论