码迷,mamicode.com
首页 > 其他好文 > 详细

常用函数-进制转换

时间:2018-12-04 00:08:20      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:string   xstream   bsp   长度   说明   ***   style   div   har   

 

/************************************************************************
函数功能: 把数据包中的值转化成按十六进制表示的字符串
输入参数: const char* buff  --  数据包
           int len           --  数据包的长度

输出参数:
返回值  : 数据报文的十六进制表示的字符串
说明    :
************************************************************************/
string DPC::PrintHexMsg(const char* buff, int len)
{
    ostringstream oss;
    const unsigned char* hexStream = (const unsigned char*)buff;

    for(int i = 0; i < len; i++)
    {
        oss << hex << setw(2) << setfill(0) << (unsigned int)hexStream[i] << " ";
    }
    return oss.str();
};

 

常用函数-进制转换

标签:string   xstream   bsp   长度   说明   ***   style   div   har   

原文地址:https://www.cnblogs.com/osbreak/p/10061683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!