c ++转换包含UTC日期和时间的字符串;到tm结构的时间

时间:2014-12-30 17:09:35

标签: c++ windows datetime

我有以下接受UTC的功能吗?格式化的字符串,应将其转换为tm结构。

tm utc_string_to_dt(std::wstring sTime)
{
    static const std::wstring dateTimeFormat{ L"%Y-%m-%dT%H:%M:%S" };

    std::wstringstream ss{ sTime };
    std::tm dt;

    ss >> std::get_time(&dt, dateTimeFormat.c_str());

    // corrections to the returned values. Brain dead year counts from 1900
    dt.tm_year = dt.tm_year + 1900;             // year counted from 1900
    dt.tm_mon = dt.tm_mon + 1;                  // month starts from 0 (not 1)

    return dt;
}

如果我给它字符串'2011-09-30T19:46:01.000Z'我得到的日期和时间可以追溯到2011年9月30日19:46:01然而如果它得到一个字符串“2011-08-30T10: 00:00 + 01:00我回到2011年8月30日00:00:00 - 时间部分设置为午夜。如何准确转换后一个字符串。我在Windows上使用VS2013。

1 个答案:

答案 0 :(得分:0)

您如何输出/检查值是什么,以及计算机上设置的时区是什么?

我没有看到你所看到的。鉴于此代码,您的代码略有修改:

const std::wstring dateTimeFormat{ L"%Y-%m-%dT%H:%M:%S" };

tm utc_string_to_dt(std::wstring sTime)
{
    std::wstringstream ss{ sTime };
    std::tm dt;

    ss >> std::get_time( &dt, dateTimeFormat.c_str() );
    return dt;
}

int main()
{

    tm x = utc_string_to_dt( L"2011-08-30T10:00:00+01:00" );

    std::cout << x.tm_year + 1900 << '/' << x.tm_mon + 1 << '/' << x.tm_mday << "\n"
        << x.tm_hour << ':' << x.tm_min << ':' << x.tm_sec << "\n";

    std::wcout << std::put_time( &x, dateTimeFormat.c_str() );

    return 0;
}

这是输出:

2011/8/30
10:0:0
2011-08-30T10:00:00

我怀疑输出方法是调整时间。