Linux C 中获取local日期和时间 time()&localtime()函数

1.  time() 函数

/*  time - 获取计算机系统当前的日历时间(Calender Time)
 *         处理日期时间的函数都是以本函数的返回值为基础进行运算
 *
 *  函数原型:
 *      #include <time.h>
 *
 *      time_t time(time_t *calptr);
 *
 *  返回值:
 *      成功:秒数,从1970-1-1,00:00:00
 *
 *  使用:
 *      time_t now;
 *
 *      time(&now); // == now = time(NULL); */

2.  localtime() 函数

/*
 *  localtime - 将时间数值变换成本地时间,考虑到本地时区和夏令时标志
 *
 *  函数声明:
 *      #include <time.h>
 *
 *      struct tm * localtime(const time_t *timer);
 * */
/*  struct tm 结构
 *
 *  此结构体空间由内核自动分配,而且不需要去释放它 */ struct tm {    int tm_sec;     /*秒,    范围从0到59 */
    int tm_min;     /*分,    范围从0到59 */
    int tm_hour;    /*小时,  范围从0到23 */
    int tm_mday;    /*一个月中的第几天,范围从1到31 */
    int tm_mon;     /*月份,  范围从0到11 */
    int tm_year;    /*自 1900起的年数 */
    int tm_wday;    /*一周中的第几天,范围从0到6 */
    int tm_yday;    /*一年中的第几天,范围从0到365 */
    int tm_isdst;   /*夏令时 */};

3. Demo 

#include <stdio.h>#include <stdlib.h>#include <string.h>#include <errno.h>#include <time.h>#define _DATETIME_SIZE  32// GetDate - 获取当前系统日期/**
 *  函数名称:GetDate
 *  功能描述:取当前系统日期
 *
 *  输出参数:char * psDate  - 系统日期,格式为yyymmdd
 *  返回结果:0 -> 成功 */int GetDate(char * psDate){
    time_t nSeconds;    struct tm * pTM;

    time(&nSeconds); // 同 nSeconds = time(NULL);
    pTM = localtime(&nSeconds);
    /* 系统日期,格式:YYYMMDD */
    sprintf(psDate,"%04d-%02d-%02d",
            pTM->tm_year + 1900, pTM->tm_mon + 1, pTM->tm_mday);
    return 0;
}// GetTime  - 获取当前系统时间/**
 *  函数名称:GetTime
 *  功能描述:取当前系统时间
 *
 *  输出参数:char * psTime -- 系统时间,格式为HHMMSS
 *  返回结果:0 -> 成功 */int GetTime(char * psTime) {
    time_t nSeconds;    struct tm * pTM;

    time(&nSeconds);
    pTM = localtime(&nSeconds);
    /* 系统时间,格式: HHMMSS */
    sprintf(psTime, "%02d:%02d:%02d",
            pTM->tm_hour, pTM->tm_min, pTM->tm_sec);
    return 0;
}// GetDateTime - 取当前系统日期和时间/**
 *  函数名称:GetDateTime
 *  功能描述:取当前系统日期和时间
 *
 *  输出参数:char * psDateTime -- 系统日期时间,格式为yyymmddHHMMSS
 *  返回结果:0 -> 成功 */int GetDateTime(char * psDateTime) {
    time_t nSeconds;    struct tm * pTM;

    time(&nSeconds);
    pTM = localtime(&nSeconds);    /* 系统日期和时间,格式: yyyymmddHHMMSS */
    sprintf(psDateTime, "%04d-%02d-%02d %02d:%02d:%02d",
            pTM->tm_year + 1900, pTM->tm_mon + 1, pTM->tm_mday,
            pTM->tm_hour, pTM->tm_min, pTM->tm_sec);
    return 0;
}

// 测试代码int main()
{    int ret;    char DateTime[_DATETIME_SIZE];

    memset(DateTime, 0, sizeof(DateTime));
    /* 获取系统当前日期 */
    ret = GetDate(DateTime);    if(ret == 0)
        printf("The Local date is %s\n", DateTime);    else
        perror("GetDate error!");

    memset(DateTime, 0, sizeof(DateTime));    /* 获取当前系统时间 */
    ret = GetTime(DateTime);    if(ret == 0)
        printf("The Local time is %s\n", DateTime);    else
        perror("GetTime error!");

    memset(DateTime, 0, sizeof(DateTime));    /* 获取系统当前日期时间 */
    ret = GetDateTime(DateTime);    if(ret == 0)
        printf("The Local date and time is %s\n", DateTime);    else
        perror("GetDateTime error!");    

    return 0;
}

运行结果

(0)

相关推荐

  • 一学就会的 Python 时间转化总结(超全)

    作者:Peter 来源:Python编程时光 在生活和工作中,我们每个人每天都在和时间打交道: 早上什么时候起床? 地铁几分钟来一趟? 中午什么时候开始午休? 明天是星期几? 距离上次买衣服已经2个月 ...

  • PHP中的日期相关函数(三)

    PHP中的日期相关函数(三) 之前我们已经介绍过了 PHP 的一些相关的日期操作对象,今天我们就来学习剩下的那些面向过程的使用方式.当然,如果是和 DateTime 类中相似的方法我们就不再进行介绍了 ...

  • 如何将Excel表格中的日期和时间分开成两列?

    Excel的制作通常都有很多小技巧,比如一个单元格中输入日期和时间,运用一些技巧就能直接将其分成日期和时间单独的两列,而无需手动修改,无疑可以节约大量的人工.下面就具体说说将表格中的日期和时间分开的三 ...

  • 如何在Python中操作日期和时间

    编写Python程序,处理日期和时间经常会遇到,幸好Python本身集成了很多日期.时间相关的模块,让这件繁琐的工作变的方便.本文介绍Python中功能强大的datetime模块. datetime模 ...

  • Excel中14个常用的日期与时间函数,动画演示,中文解读

    [温馨提示]亲爱的朋友,阅读之前请您点击[关注],您的支持将是我最大的动力! 前天的教程中汇总了16个文本函数的用法,小伙伴们在工作中应用得如何?今天阿钟老师又整理了14个日期和时间函数的用法.在Ex ...

  • 【Excel技巧1001-28】- Excel中如何快速录入当前的日期和时间?

    我们来继续学习技巧系列,今天是第28期! 当我们在系统中录入销售数量的时候,一般销售系统,都会自动记录我们销售日期时间,那么在Excel中我们如何动态记录当前录入的时间和日期呢? 如果你对Excel函 ...

  • Qt:获取日期和时间

    前言 一般而言,操作系统(Windows/Linux/Mac)的内核函数都会给出了日期时间的相关系统库函数,Qt在此基础上进行了封装,提供了获取时间和日期的3个相关类--QDateTime.QDate ...

  • excel中怎么快速插入日期和时间

    按下ctrl+; 生成的日期是静态的,不会跟电脑时间走.如果我们在A76单元格输入:=TODAY()也是可以快速插入今天的日期(2018/9/25):但这个日期是动态的,如果把工作表保存下来,明天打开 ...

  • Linux下使用hwclock命令设置硬件日期和时间

    在Linux下设置系统日期和时间之前,先要确定操作系统时间已经被设置恰当.方法见上一篇Linux下使用命令设置系统日期和时间. 设置硬件时间要依赖于操作系统时间,具体方法如下: # hwclock – ...

  • 鱼油制剂可增加房颤风险!建议多从食物中获取营养——欧洲心脏杂志子刊最新分析

    房颤作为最常见心律失常类型之一,兼具高发病率和高死亡率,已成为世界范围内主要疾病负担之一. 鱼油制剂增加房颤风险 在临床实践中,Omega-3 脂肪酸补充剂(以下改称为鱼油制剂)常被用于降低血浆甘油三 ...

  • Linux命令中交互式命令都有哪些?Linux基础

    交互式命令就是在top命令执行过程中使用的一些命令.top命令用于实时地对系统处理器状态进行监控,它能够实时地显示系统中各个进程的资源占用状况.该命令可以按照CPU的使用.内存的使用和执行时间对系统任 ...