gpt4 book ai didi

c++ - 将 unsigned char[] 解析为 std::string

转载 作者:太空宇宙 更新时间:2023-11-04 16:26:46 25 4
gpt4 key购买 nike

我在解析 char[] 的内容时遇到问题。它包含字节,可以格式化为 ASCII 字符串。然而,最后两个字节是 CRC。因此,我将数组中除最后两个条目之外的所有内容都以十六进制解释为字符串:

std::ostringstream payload;
std::ostringstream crc;
payload << std::hex;
crc << std::hex;

// last two bytes are CRC
for (int i = 0; i < this->d_packetlen - 2; i++)
{
payload << static_cast<unsigned>(this->d_packet[i]);

for (int j = i; j < this->d_packetlen; i++)
{
crc << static_cast<unsigned>(this->d_packet[j]);
}
}
std::string payload_result = payload.str();
std::string crc_result = crc.str();

fprintf(d_new_fp, "%s, %s, %d, %d\n", payload_result.c_str(),
crc_result.c_str(), this->d_lqi, this->d_lqi_sample_count);

这行不通,我不确定这是为什么?有没有更简单的方法将未签名的字符转换为 ASCII?

最好的,马吕斯

最佳答案

这是一个无限循环:

for (int j = i; j < this->d_packetlen; i++)
{
crc << static_cast<unsigned>(this->d_packet[j]);
}

在这个循环中,您不会递增j;相反,您正在递增 i。也许,这就是问题所在?


此外,根据您描述问题的方式,我认为正确的解决方案是:

for (int i = 0; i < this->d_packetlen - 2; i++)
{
payload << static_cast<unsigned int>(this->d_packet[i]);
}
for (int j = this->d_packetlen - 2; j < this->d_packetlen; j++)
{
crc << static_cast<unsigned int>(this->d_packet[j]);
}

也就是说,第二个循环应该在第一个循环之外。

关于c++ - 将 unsigned char[] 解析为 std::string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10895714/

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