C/C++標準庫之轉(zhuǎn)換UTC時間到local本地時間詳解
前言
UTC 時間DateTime.UtcNow 和 系統(tǒng)本地時間 DateTime.Now 相差8個時區(qū) ,美國本地時間和北京時間相差15個時區(qū): 美國,而一般使用UTC時間方便統(tǒng)一各地區(qū)時間差異。
場景
1.如果有面向全球用戶的網(wǎng)站, 一般在存儲時間數(shù)據(jù)時存儲的是UTC格式的時間, 這樣時間是統(tǒng)一的, 并可以根據(jù)當(dāng)?shù)貢r區(qū)來進行準確的轉(zhuǎn)換.
2.存儲本地時間的問題就在于如果換了時區(qū), 那么顯示的時間并不正確. 所以我們存儲時間時最好還是存儲UTC時間,便于正確的轉(zhuǎn)換.
說明
1.C/C++標準庫提供了標準函數(shù)可以轉(zhuǎn)換, 不需要借助Win32 API.
例子
// test_datetime_format.cpp : 定義控制臺應(yīng)用程序的入口點。 // #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時間精確到微秒的實現(xiàn)代碼
在日常開發(fā)過程中經(jīng)常會使用到時間類函數(shù)的統(tǒng)計,其中獲取1970年至今的UTC時間是比較常使用的,但是在windows下沒有直接能夠精確到微妙級的函數(shù)可用。本文提供方法正好可以解決這類需求問題。
下面先給出C++實現(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
接下來給出使用方法:
timeval tv; gettimeofday(&tv);
或者直接調(diào)用:GetUtcCaressing();
UTC時間秒級UTC獲取方法代碼:
time_t timep; struct tm *p; time(&timep); p=localtime(&timep); timep = mktime(p); printf("%d\n",timep);
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,如果有疑問大家可以留言交流,謝謝大家對我們的支持。
參考
- NOTE-datetime
- _mkgmtime
- timegm - Linux man page
- Converting Between Local Times and GMT/UTC in C/C++
您可能感興趣的文章
- 04-02c語言沒有round函數(shù) round c語言
- 01-10深入理解C++中常見的關(guān)鍵字含義
- 01-10使用C++實現(xiàn)全排列算法的方法詳解
- 01-10c++中inline的用法分析
- 01-10用C++實現(xiàn)DBSCAN聚類算法
- 01-10全排列算法的非遞歸實現(xiàn)與遞歸實現(xiàn)的方法(C++)
- 01-10C++大數(shù)模板(推薦)
- 01-10淺談C/C++中的static與extern關(guān)鍵字的使用詳解
- 01-10深入C/C++浮點數(shù)在內(nèi)存中的存儲方式詳解
- 01-10深入理解C/C++混合編程


閱讀排行
本欄相關(guān)
- 04-02c語言函數(shù)調(diào)用后清空內(nèi)存 c語言調(diào)用
- 04-02func函數(shù)+在C語言 func函數(shù)在c語言中
- 04-02c語言的正則匹配函數(shù) c語言正則表達
- 04-02c語言用函數(shù)寫分段 用c語言表示分段
- 04-02c語言中對數(shù)函數(shù)的表達式 c語言中對
- 04-02c語言編寫函數(shù)冒泡排序 c語言冒泡排
- 04-02c語言沒有round函數(shù) round c語言
- 04-02c語言分段函數(shù)怎么求 用c語言求分段
- 04-02C語言中怎么打出三角函數(shù) c語言中怎
- 04-02c語言調(diào)用函數(shù)求fibo C語言調(diào)用函數(shù)求
隨機閱讀
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 01-10使用C語言求解撲克牌的順子及n個骰子
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 08-05織夢dedecms什么時候用欄目交叉功能?
- 01-11ajax實現(xiàn)頁面的局部加載
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10C#中split用法實例總結(jié)
- 04-02jquery與jsp,用jquery
- 01-10delphi制作wav文件的方法
- 08-05DEDE織夢data目錄下的sessions文件夾有什