gpt4 book ai didi

c++ - 将字节数组转换为十六进制字符串

转载 作者:搜寻专家 更新时间:2023-10-31 02:12:38 24 4
gpt4 key购买 nike

<分区>

这是我为 Print a byte array to hex String 编写的代码,但现在我想将它们保存为 std::string 并稍后使用

这是我的代码

typedef std::vector<unsigned char> bytes;
void printBytes(const bytes &in)
{
std::vector<unsigned char>::const_iterator from = in.begin();
std::vector<unsigned char>::const_iterator to = in.end();
for (; from != to; ++from) printf("%02X", *from);
}

我能做什么?,我想将它保存为字符串而不是在控制台窗口中打印(显示)?任何想法!

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com