gpt4 book ai didi

c++ - 将历史时间转换为 GMT

转载 作者:搜寻专家 更新时间:2023-10-31 01:19:05 25 4
gpt4 key购买 nike

我需要将格式为“2011061411322100”的一些字符串时间转换为 GMT - 我的第一次尝试如下。但是,问题是时间来自另一台PC,是历史时间。所以我没有实时获取时间,所以我不能简单地从我的代码运行的盒子上的本地时间获取 GMT。

问题是,如果我的代码在时间更改期间运行,时间更改将发生在我的盒子上,但不会发生在我获取时间的远程盒子上。但是,我可以随时查询框以获取当前时间。

所以,给出更多细节:

  1. 我在远程盒子上开始工作
  2. 任务完成
  3. 我得到一些与工作运行有关的时间
  4. 我将时间转换为 GMT

如果在 1 点和 2 点之间发生时间变化(夏令时),我就完蛋了。我的 GMT 转换将中断。我想在 2) 之后,我需要获取当前的 Remote Box 时间,看看是否有 >58 分钟的差异,然后将其应用于转换。但我想不出一个可靠的方法来做到这一点。


string GMTConverter::strToGMT(const string& timeToConvert)
{
// Set time zone from TZ environment variable.
_tzset();

struct tm tmTime;


//2011 06 14 11 32 21 00
// (strToInt is just a wrapper for atoi)
int year = strToint(timeToConvert.substr(0, 4) );
int month = strToint(timeToConvert.substr(4, 2) );
int day = strToint(timeToConvert.substr(6, 2) );
int hour = strToint(timeToConvert.substr(8, 2) );
int min = strToint(timeToConvert.substr(10, 2) );
int sec = strToint(timeToConvert.substr(12, 2) );

cout<<"Time after parsing: "<<year<<"/"<<month<<"/"<<day<<" "<<hour<<":"<<min<<":"<<sec<<endl;

// add to tm struct and return
tmTime.tm_hour = hour;
tmTime.tm_min = min;
tmTime.tm_sec = sec;
tmTime.tm_mday = day;
tmTime.tm_mon = (month-1);
tmTime.tm_year = (year - 1900);

cout <<"Time in TM: "<<tmTime.tm_year<<"/"<<tmTime.tm_mon<<"/"<<tmTime.tm_mday<<" "<<tmTime.tm_hour<<":"<<tmTime.tm_min<<":"<<tmTime.tm_sec<<endl;

char currDateTime[64];

// For logging
strftime(currDateTime, 63, "%c", &tmTime);
cout <<"Actual time:"<<currDateTime<<endl;

time_t remotePCTime = mktime( &tmTime );

struct tm *gmt = gmtime( &remotePCTime );
cout << "gmt = " << asctime( gmt ) << endl;

char datebuf_2[12];
char timebuf_2[13];
strftime( datebuf_2, 13, "%Y-%m-%d\0", gmt );
strftime( timebuf_2, 13, "%H:%M:%S\0", gmt );

return string(datebuf_2) + "T" + string(timebuf_2) + "." + string("000");
}

最佳答案

明显可靠的解决方案是使用 UTC(没有夏令时)作为您发送的时间戳。使用任何具有固有歧义的时间系统(每年有一个小时的重叠时间,您可以在不同的时间获得相同的时间戳)将无法采用万无一失的方法,因为信息会丢失。

如果您无法控制远程机器发送的时间格式,您只能尝试根据您已有的信息进行推断,例如,如果结束时间小于开始时间,则加一小时.如果作业花费的时间超过一小时,这又会带来歧义,但至少时间不会倒退。

关于c++ - 将历史时间转换为 GMT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6492016/

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