time_t到.NET的转换

本文提供了两种将UNIX时间戳转换为本地日期时间的方法。方法一通过直接加秒的方式实现,方法二则通过定义私有静态类来处理。此外还介绍了如何进行文件时间和OLE时间的转换。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

方法1:

public DateTime UNIXtoDateTime(long seconds) {
double secs = Convert.ToDouble(seconds);
DateTime dt = new DateTime(1970, 1, 1, 0, 0, 0).AddSeconds(secs);

return System.TimeZone.CurrentTimeZone.ToLocalTime(dt);

方法2:

public sealed class ConvertTime
{
/// <summary>
/// Private constructor to prevent the class from being instantiated.
/// </summary>
private ConvertTime() {}

private static DateTime origin = System.TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1, 0, 0, 0));

/// <summary>
/// time_t is an int representing the number of seconds since Midnight UTC 1 Jan 1970 on the Gregorian Calendar.
/// </summary>
/// <param name="time_t"></param>
/// <returns></returns>
public static DateTime ToDateTime(int time_t)
{
DateTime convertedValue = origin + new TimeSpan(time_t * TimeSpan.TicksPerSecond);
if (System.TimeZone.CurrentTimeZone.IsDaylightSavingTime(convertedValue) == true)
{
System.Globalization.DaylightTime daylightTime = System.TimeZone.CurrentTimeZone.GetDaylightChanges(convertedValue.Year);
convertedValue = convertedValue + daylightTime.Delta;
}
return convertedValue;
}

/// <summary>
/// time_t is an int representing the number of seconds since Midnight UTC 1 Jan 1970 on the Gregorian Calendar.
/// </summary>
/// <param name="time"></param>
/// <returns></returns>
public static int To_time_t(DateTime time)
{
DateTime convertedValue = time;
if (System.TimeZone.CurrentTimeZone.IsDaylightSavingTime(convertedValue) == true)
{
System.Globalization.DaylightTime daylightTime = System.TimeZone.CurrentTimeZone.GetDaylightChanges(convertedValue.Year);
convertedValue = convertedValue - daylightTime.Delta;
}
long diff = convertedValue.Ticks - origin.Ticks;
return (int)(diff / TimeSpan.TicksPerSecond);
}
}

Also  you can convert filetime or oledate to System.DateTime.
FILETIME to/from System.DateTime
Use System.DateTime.FromFileTime() and System.DateTime.ToFileTime().
OLE date to/from System.DateTime
Use System.DateTime.FromOADate() and System.DateTime.ToOADate().  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值