timeval 转换为年月日

简介: timeval 转换为年月日
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#include <time.h>
char time_string[40];
char *getLocalTime(char *timeStr, int len, struct timeval tv )
{
struct tm *ptm;
// char time_string[40];
    long milliseconds;
 ptm = localtime (&(tv.tv_sec));
 strftime(time_string,len, "%Y-%m-%d %H-%M-%S", ptm );
 milliseconds = tv.tv_usec/1000;
 sprintf(timeStr, "%s.%03ld", time_string,milliseconds );
return time_string;
}
int main(int argc, const char **argv)
{
    char local_time_str[128];
    char *p = NULL;
    struct timeval tv;
    gettimeofday(&tv, NULL);
    p = getLocalTime(local_time_str, sizeof(local_time_str), tv);
    printf("Get local time: \n%s\n", local_time_str);
    return 0;
}

微信图片_20230117180911.png

目录
相关文章
将时间格式转化成时间戳和时间戳转化成时间格式的公式
将时间格式转化成时间戳和时间戳转化成时间格式的公式
|
2月前
|
安全 C++
友元函数输出时分秒,年月日
友元函数输出时分秒,年月日
12 0
|
6月前
|
SQL 关系型数据库 MySQL
【Databand】日期时间函数
【Databand】日期时间函数
81 1
|
7月前
日期字符串转化为年月日
日期字符串转化为年月日
49 0
|
7月前
|
Java
自定义字符串转换为周几和指定日期格式
自定义字符串转换为周几和指定日期格式
48 0
|
7月前
|
C#
C#DateTime时间转换方法大全
C#DateTime时间转换方法大全
381 0
|
JSON JavaScript 前端开发
uniapp时间戳转换成年月日时分秒的格式
uniapp时间戳转换成年月日时分秒的格式
423 1
uniapp时间戳转换成年月日时分秒的格式
时间戳转化成日期
时间戳转化成日期
74 0
|
前端开发 数据格式
前端实现年月日时分秒的转换
前端实现年月日时分秒的转换
190 0
dateTime怎么根据日期(年月日)查找数据
dateTime怎么根据日期(年月日)查找数据
158 0
dateTime怎么根据日期(年月日)查找数据