c ++时间戳到人类可读的日期时间函数

时间:2013-01-21 10:17:41

标签: c++ timestamp

我有一个简单的功能,我需要从时间戳返回人类可读的日期时间但不知何故 它以秒为单位返回相同的时间戳:

输入1356953890

std::string UT::timeStampToHReadble(long  timestamp)
{
    const time_t rawtime = (const time_t)timestamp;

    struct tm * dt;
    char timestr[30];
    char buffer [30];

    dt = localtime(&rawtime);
    // use any strftime format spec here
    strftime(timestr, sizeof(timestr), "%m%d%H%M%y", dt);
    sprintf(buffer,"%s", timestr);
    std::string stdBuffer(buffer);
    return stdBuffer;
}

输出1231133812

这就是我所说的:

long timestamp = 1356953890L ;
std::string hreadble = UT::timeStampToHReadble(timestamp);
std::cout << hreadble << std::endl;

,输出为:1231133812 我是这种形式的某种形式:31/1/2012 11:38:10 我在这里失踪了什么?

UTDATE:
解决方案 strftime(timestr,sizeof(timestr),“%H:%M:%S%d /%m /%Y”,dt);

1 个答案:

答案 0 :(得分:7)

可以归结为:

std::string UT::timeStampToHReadble(const time_t rawtime)
{
    struct tm * dt;
    char buffer [30];
    dt = localtime(&rawtime);
    strftime(buffer, sizeof(buffer), "%m%d%H%M%y", dt);
    return std::string(buffer);
}

的变化:

  • 我更喜欢在功能之外进行投射。如果调用者有time_t数据,那么在调用函数之前将time_t强制转换为long会很奇怪。
  • 没有必要使用两个缓冲区(因此不需要使用sprintf进行复制)