小編給大家分享一下C/C++標(biāo)準(zhǔn)庫(kù)之如何轉(zhuǎn)換UTC時(shí)間到local本地時(shí)間,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

堅(jiān)守“ 做人真誠(chéng) · 做事靠譜 · 口碑至上 · 高效敬業(yè) ”的價(jià)值觀,專業(yè)網(wǎng)站建設(shè)服務(wù)10余年為成都護(hù)欄打樁機(jī)小微創(chuàng)業(yè)公司專業(yè)提供成都定制網(wǎng)站營(yíng)銷網(wǎng)站建設(shè)商城網(wǎng)站建設(shè)手機(jī)網(wǎng)站建設(shè)小程序網(wǎng)站建設(shè)網(wǎng)站改版,從內(nèi)容策劃、視覺(jué)設(shè)計(jì)、底層架構(gòu)、網(wǎng)頁(yè)布局、功能開(kāi)發(fā)迭代于一體的高端網(wǎng)站建設(shè)服務(wù)。
前言
UTC 時(shí)間DateTime.UtcNow 和 系統(tǒng)本地時(shí)間 DateTime.Now 相差8個(gè)時(shí)區(qū) ,美國(guó)本地時(shí)間和北京時(shí)間相差15個(gè)時(shí)區(qū): 美國(guó),而一般使用UTC時(shí)間方便統(tǒng)一各地區(qū)時(shí)間差異。
場(chǎng)景
1.如果有面向全球用戶的網(wǎng)站, 一般在存儲(chǔ)時(shí)間數(shù)據(jù)時(shí)存儲(chǔ)的是UTC格式的時(shí)間, 這樣時(shí)間是統(tǒng)一的, 并可以根據(jù)當(dāng)?shù)貢r(shí)區(qū)來(lái)進(jìn)行準(zhǔn)確的轉(zhuǎn)換.
2.存儲(chǔ)本地時(shí)間的問(wèn)題就在于如果換了時(shí)區(qū), 那么顯示的時(shí)間并不正確. 所以我們存儲(chǔ)時(shí)間時(shí)最好還是存儲(chǔ)UTC時(shí)間,便于正確的轉(zhuǎn)換.
說(shuō)明
1.C/C++標(biāo)準(zhǔn)庫(kù)提供了標(biāo)準(zhǔn)函數(shù)可以轉(zhuǎn)換, 不需要借助Win32 API.
例子
// test_datetime_format.cpp : 定義控制臺(tái)應(yīng)用程序的入口點(diǎn)。
//
#include "stdafx.h"
#include <time.h>
#include <sstream>
#include <iostream>
#include <assert.h>
//2014-09-13T10:52:36Z
//2014-09-13 10:52:36
char* ConvertUtcToLocalTime(struct tm* t2,const char* date){
 struct tm t;
 memset(&t,0,sizeof(t));
 t.tm_year = atoi(date)-1900;
 t.tm_mon = atoi(date+5)-1;
 t.tm_mday = atoi(date+8);
 t.tm_hour = atoi(date+11);
 t.tm_min = atoi(date+14);
 t.tm_sec = atoi(date+17);
 time_t tt = _mkgmtime64(&t);
 if(tt != -1){
 if(t2 == NULL){
  t2 = &t; 
 }
 *t2 = *localtime(&tt);
 char* ds = (char*) malloc(24);
 memset(ds, 0, 24);
 sprintf(ds, "%.4d-%.2d-%.2d %.2d:%.2d:%.2d", t2->tm_year + 1900,
  t2->tm_mon + 1, t2->tm_mday, t2->tm_hour, t2->tm_min,
  t2->tm_sec);
 return ds;
 }
 return NULL;
}
//https://www.w3.org/TR/NOTE-datetime
//https://msdn.microsoft.com/en-us/library/2093ets1.aspx
//2014-09-13T10:52:36Z
int _tmain(int argc, _TCHAR* argv[])
{
 const char* kTime = "2014-09-13 18:52:36";
 std::cout << "Source DateTime: " << "2014-09-13T10:52:36Z" << std::endl;
 auto t = ConvertUtcToLocalTime(NULL,"2014-09-13T10:52:36Z");
 std::cout << "Dest DateTime: " << t << std::endl;
 assert(!strcmp(t,kTime));
 t = ConvertUtcToLocalTime(NULL,"2014-09-13 10:52:36");
 std::cout << t << std::endl;
 assert(!strcmp(t,kTime));
 struct tm tt;
 t = ConvertUtcToLocalTime(&tt,"2014-09-13 10:52:36");
 std::cout << t << std::endl;
 assert(!strcmp(t,kTime));
 assert(tt.tm_year == (2014-1900));
 assert(tt.tm_mon == 9-1);
 assert(tt.tm_mday == 13);
 assert(tt.tm_hour == 18);
 assert(tt.tm_min == 52);
 assert(tt.tm_sec == 36);
 return 0;
}
}輸出
Source DateTime: 2014-09-13T10:52:36Z Dest DateTime: 2014-09-13 18:52:36 2014-09-13 18:52:36 2014-09-13 18:52:36
C++中獲取UTC時(shí)間精確到微秒的實(shí)現(xiàn)代碼
在日常開(kāi)發(fā)過(guò)程中經(jīng)常會(huì)使用到時(shí)間類函數(shù)的統(tǒng)計(jì),其中獲取1970年至今的UTC時(shí)間是比較常使用的,但是在windows下沒(méi)有直接能夠精確到微妙級(jí)的函數(shù)可用。本文提供方法正好可以解決這類需求問(wèn)題。
下面先給出C++實(shí)現(xiàn)代碼:
代碼如下:
#ifndef UTC_TIME_STAMP_H_
#define UTC_TIME_STAMP_H_
#include <windows.h>
#include <sys/timeb.h>
#include <time.h> 
#if !defined(_WINSOCK2API_) && !defined(_WINSOCKAPI_)
struct timeval
{
long tv_sec;
long tv_usec;
};
#endif
static int gettimeofday(struct timeval* tv)
{
 union {
    long long ns100;
    FILETIME ft;
 } now;
 GetSystemTimeAsFileTime (&now.ft);
 tv->tv_usec = (long) ((now.ns100 / 10LL) % 1000000LL);
 tv->tv_sec = (long) ((now.ns100 - 116444736000000000LL) / 10000000LL);
 return (0);
}
//獲取1970年至今UTC的微妙數(shù)
static time_t TimeConversion::GetUtcCaressing()
{
 timeval tv;
 gettimeofday(&tv); 
 return ((time_t)tv.tv_sec*(time_t)1000000+tv.tv_usec);
}
#endif接下來(lái)給出使用方法:
timeval tv; gettimeofday(&tv);
或者直接調(diào)用:GetUtcCaressing();
UTC時(shí)間秒級(jí)UTC獲取方法代碼:
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
printf("%d\n",timep);以上是“C/C++標(biāo)準(zhǔn)庫(kù)之如何轉(zhuǎn)換UTC時(shí)間到local本地時(shí)間”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
                新聞標(biāo)題:C/C++標(biāo)準(zhǔn)庫(kù)之如何轉(zhuǎn)換UTC時(shí)間到local本地時(shí)間
                
                URL分享:http://www.chinadenli.net/article8/jdhsip.html
            
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供小程序開(kāi)發(fā)、ChatGPT、做網(wǎng)站、標(biāo)簽優(yōu)化、App設(shè)計(jì)、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
