c语言utc时间转换北京时间_C/C++标准库之转换UTC时间到local本地时间详解
前言
UTC 时间与 DateTime.UtcNow 相隔8小时;而美国本地时间和北京时间相隔15小时:其中美国地区。通常采用UTC作为标准以简化全球不同地区的时差问题。
场景
对于拥有全球用户的企业网站,在存储时间数据时通常采用UTC格式的时间表示法。这样时间能够实现统一,并且能够根据当地时区进行准确转换。
存储本地时间存在缺陷在于更换时区后会导致显示的时间出现偏差。因此,在存储本地时间时最好将时间设置为基于国际标准时间(UTC)的形式,并确保能够准确地完成相应的转换过程
说明
1.C/C++标准库提供了标准函数可以转换, 不需要借助Win32 API.
例子
// test_datetime_format.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
#include
#include
#include
//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时间精确到微秒的实现代码
在开发过程中的许多场景都需要对时间类函数进行统计。其中一种常用的方法是获取自1970年1月1日以来的UTC时间。但是,在Windows环境下,并没有直接提供精确至微秒级的时间函数可用。本文提供的解决方案正好能够满足这类需求
下面先给出C++实现代码:
代码如下:
#ifndef UTC_TIME_STAMP_H_
#define UTC_TIME_STAMP_H_
#include
#include
#include
#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的微妙数
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);
或者直接调用:GetUtcCaressing();
UTC时间秒级UTC获取方法代码:
time_t timep;
struct tm *p;
time(&timep);
p=localtime(&timep);
timep = mktime(p);
printf("%d\n",timep);
总结
这篇文档的所有内容即为此处。文中所述内容可能对您的学习或工作提供一些参考价值。如需进一步了解或有任何疑问,请随时留言交流。感谢大家对我们平台的支持与信任。
参考
