时间戳转成日期
Posted 水澹澹兮生烟.
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间戳转成日期相关的知识,希望对你有一定的参考价值。
目录
再将时间戳转成日期格式前我们要知道一些库函数,与time.h中定义的一些数据。
1.将time_t类型时间转换成时间结构体tm形式
struct tm * gmtime(const time_t *timer);
struct tm * localtime(const time_t * timer);
2.tm时间结构体
#ifndef _TM_DEFINED
struct tm
int tm_sec; /* 秒 – 取值区间为[0,59] */
int tm_min; /* 分 - 取值区间为[0,59] */
int tm_hour; /* 时 - 取值区间为[0,23] */
int tm_mon; /* 月份(从一月开始,0代表一月) - 取值区间为[0,11] */
int tm_year; /* 年份,其值等于实际年份减去1900 */
int tm_wday; /* 星期 – 取值区间为[0,6],其中0代表星期天,1代表星期一,以此类推 */
int tm_yday; /* 从每年的1月1日开始的天数 – 取值区间为[0,365],其中0代表1月1日,1代表1月2日,以此类推 */
int tm_isdst; /* 夏令时标识符,实行夏令时的时候,tm_isdst为正。不实行夏令时的进候,tm_isdst为0;不了解情况时,tm_isdst()为负。*/
;
#define _TM_DEFINED
#endif
3.strftime()函数
size_t strftime(char *str, size_t maxsize, const char *format, const struct tm *timeptr);
strftime函数,根据 format 中定义的格式化规则,格式化结构 timeptr 表示的时间,并把它存储在 str 中。
4.时间戳转化
#include<stdio.h>
#include<windows.h>
#include<time.h>
struct _time
int year;
int month;
int day;
int hour;
int min;
int sec;
;//定义一个时间结构体来进行数据的存储
BOOL change_time_nor(_time* a_time,int time_stamp)//首先要注意的点是这里的时间戳是一个10位的int型数据,如果是十三位使用tm结构体会出现数组越界访问
if(0 == time_stamp) return FALSE;
time_t tim_tick = time_t(time_stamp);//先将时间戳转换成time_t类型(强制类型转换)
struct tm a_tm;
tm = *localtime(&tim_tick);//将参数tim_tick所指的time_t类型信息转换成实际所使用的时间日期表示方法,将结果返回到结构tm结构类型的变量
char str[100] = 0;
strftime(str,sizeof(s),"%Y-%m-%d %H:%M:%S",tm);//以第三个参数的形式将tm的值赋值给str字符数组中
(*a_time).year = atoi(s);
(*a_time).month = atoi(s+5);
(*a_time).day = atoi(s+8);
(*a_time).hour = atoi(s+11);
(*a_time).min = atoi(s + 14);
(*a_time).sec = atoi(s + 17);
return TRUE;
int main()
_time re_time;//定义一个时间结构体类型对象
//获取当前时间戳
time_t n_time = time(0);
change_time_nor(&re_time,n_time);
return 0;
以上是关于时间戳转成日期的主要内容,如果未能解决你的问题,请参考以下文章