我们有字符串格式UTC时间,我们需要转换为您当前的时区和字符串格式。
string strUTCTime = "2017-03-17T10:00:00Z";
需要以相同的字符串格式将上面的值转换为本地时间。
与IST一样,它将是"2017-03-17T15:30:00Z"
答案 0 :(得分:0)
得到解决方案......
1)将字符串格式化时间转换为time_t
2)使用“localtime_s”将utc转换为本地时间。
3)使用“strftime”将本地时间(struct tm格式)转换为字符串格式。
int main()
{
std::string strUTCTime = "2017-03-17T13:20:00Z";
std::wstring wstrUTCTime = std::wstring(strUTCTime.begin(),strUTCTime.end());
time_t utctime = getEpochTime(wstrUTCTime.c_str());
struct tm tm;
/*Convert UTC TIME To Local TIme*/
localtime_s(&tm, &utctime);
char CharLocalTimeofUTCTime[30];
strftime(CharLocalTimeofUTCTime, 30, "%Y-%m-%dT%H:%M:%SZ", &tm);
string strLocalTimeofUTCTime(CharLocalTimeofUTCTime);
std::cout << "\n\nLocal To UTC Time Conversion:::" << strLocalTimeofUTCTime;
}
std::time_t getEpochTime(const std::wstring& dateTime)
{
/* Standard UTC Format*/
static const std::wstring dateTimeFormat{ L"%Y-%m-%dT%H:%M:%SZ" };
std::wistringstream ss{ dateTime };
std::tm dt;
ss >> std::get_time(&dt, dateTimeFormat.c_str());
/* Convert the tm structure to time_t value and return Epoch. */
return _mkgmtime(&dt);
}