UTC 转 LocalTime

/*使用unsigned const char*纯碎是为了配合项目,改成char*会比较通用些*/
BOOL CDllSuiteEngine::Time_StrToType(unsigned const char* lpszValue, SYSTEMTIME &time)
{
    if (!lpszValue)
    {
        return FALSE;
    }

    int         nYear   = 0;
    int         nMonth  = 0;
    int         nDay    = 0;
    int         nHour   = 0;
    int         nSecond = 0;
    int         nMinute = 0;
    int         nMilliSecond = 0;
    CString  str     = lpszValue;

    sscanf(str, _T("%d-%d-%dT%d:%d:%d.%dZ"), &nYear, &nMonth, &nDay, &nHour, &nMinute, &nSecond,&nMilliSecond);

    //     if (nMonth==0 || nDay==0)
    //     {
    //         _stscanf(str, _T("%d/%d/%d %d:%d:%d"), &nYear, &nMonth, &nDay, &nHour, &nMinute, &nSecond);
    //     }

    time.wYear   = nYear;
    time.wMonth  = nMonth;
    time.wDay    = nDay;
    time.wHour   = nHour;
    time.wSecond = nSecond;
    time.wMinute = nMinute;
    time.wMilliseconds = nMilliSecond;//MUST be set, or all member of converted local time is 52428

    return TRUE;
}


void CDllSuiteEngine::Time_UTCToLocal(SYSTEMTIME& tUTC, SYSTEMTIME& tLocal)
{
    //e.g. "2013-06-23T19:10:57.000Z";
    TIME_ZONE_INFORMATION timeZomeInfo;
    ::GetTimeZoneInformation(&timeZomeInfo);
    ::SystemTimeToTzSpecificLocalTime(&timeZomeInfo, &tUTC, &tLocal); //Careful: member MilliSeconds must be set.
}

void CDllSuiteEngine::Time_TypeToStr(SYSTEMTIME tType,CString& szTime)
{
    szTime.Empty();
    szTime.Format(_T("%04d-%02d-%02d %02d:%02d:%02d"), tType.wYear, tType.wMonth, tType.wDay, tType.wHour, tType.wMinute, tType.wSecond);
}

void CDllSuiteEngine::Time_UTCStrToLocalStr(unsigned const char* szUTC,CString& cLocal)
{
    cLocal.Empty();
    if(!szUTC)
        return;

    SYSTEMTIME tUTC;
    SYSTEMTIME tLocal;
    if(Time_StrToType(szUTC, tUTC))
    {
        Time_UTCToLocal(tUTC, tLocal);
        Time_TypeToStr(tLocal, cLocal);
    }
}

void main()
{
    CString cLocalTime;
    Time_UTCStrToLocalStr("2013-06-23T19:10:57.000Z",cLocalTime);
    //output..
}

北京      UTC+8
Hawaii    UTC-10

转载于:https://www.cnblogs.com/tupx/p/3914515.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值