转换二进制数据流成字符串显示

 char buf[4096];
 for (int i=0; i<data_len; i++)
 {
  sprintf(buf+i*2, "%02x", data[i]);
 }

你可能感兴趣的:(转换二进制数据流成字符串显示)