C语言 已知一个从1970到现在的毫秒数,如何将这个毫秒转换为具体的日期时间?

时间:2021-06-09 17:20:31
C语言 已知一个从1970到现在的毫秒数,如何将这个毫秒转换为具体的日期时间?求解..谢谢..

2 个解决方案

#1


先用秒
QDateTime date;
date.setTime_t(xxxx);

#2


public static DateTime ConvertDateTime(double tickCount){    DateTime dt1970 = new DateTime(1970, 1, 1);    return dt1970.AddMilliseconds(tickCount).ToLocalTime();}  

#1


先用秒
QDateTime date;
date.setTime_t(xxxx);

#2


public static DateTime ConvertDateTime(double tickCount){    DateTime dt1970 = new DateTime(1970, 1, 1);    return dt1970.AddMilliseconds(tickCount).ToLocalTime();}