这篇文章主要介绍了C# 获取当前总毫秒数的实例讲解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
在.Net下DateTime.Ticks获得的是个long型的时间整数,具体表示是至0001 年 1 月 1 日午夜 12:00:00 以来所经过时间以100纳秒的数字。转换为秒为Ticks/10000000,转换为毫秒Ticks/10000。
如果要获取从1970年1月1日至当前时间所经过的毫秒数,代码如下:
//获取当前Ticks
long currentTicks= DateTime .Now.Ticks;
DateTime dtFrom = new DateTime (1970, 1, 1, 0, 0, 0, 0);
long currentMillis = (currentTicks - dtFrom.Ticks) / 10000;
类似于Java中:System.currentTimeMillis()
换算单位:
1秒 = 1000毫秒
1毫秒 = 1000微妙
1微秒 = 1000纳秒
补充:C# 将时间戳 byte[] 转换成 datetime 的几个方法
推荐方法:
DateTime now = DateTime.Now;
byte[] bts = BitConverter.GetBytes(now.ToBinary());
DateTime rt = DateTime.FromBinary(BitConverter.ToInt64(bts, 0));
用了2个byte,日期范围 2000-01-01 ~ 2127-12-31,下面是转换方法:
// Date -> byte[2]
public static byte[] DateToByte(DateTime date)
{
int year = date.Year - 2000;
if (year < 0 || year > 127)
return new byte[4];
int month = date.Month;
int day = date.Day;
int date10 = year * 512 + month * 32 + day;
return BitConverter.GetBytes((ushort)date10);
}
// byte[2] -> Date
public static DateTime ByteToDate(byte[] b)
{
int date10 = (int)BitConverter.ToUInt16(b, 0);
int year = date10 / 512 + 2000;
int month = date10 % 512 / 32;
int day = date10 % 512 % 32;
return new DateTime(year, month, day);
}
调用举例:
byte[] write = DateToByte(DateTime.Now.Date);
MessageBox.Show(ByteToDate(write).ToString("yyyy-MM-dd"));
/// <summary> 2. /// 将BYTE数组转换为DATETIME类型 3. /// </summary> 4. /// <param name="bytes"></param> 5. /// <returns></returns> 6. private DateTime BytesToDateTime(byte[] bytes)
{
if (bytes != null && bytes.Length >= 5)
{
int year = 2000 + Convert.ToInt32(BitConverter.ToString(new byte[1] { bytes[0] }, 0));
int month = Convert.ToInt32(BitConverter.ToString(new byte[1] { bytes[1] }, 0));
int date = Convert.ToInt32(BitConverter.ToString(new byte[1] { bytes[2] }, 0));
int hour = Convert.ToInt32(BitConverter.ToString(new byte[1] { bytes[3] }, 0));
int minute = Convert.ToInt32(BitConverter.ToString(new byte[1] { bytes[4] }, 0));
DateTime dt = new DateTime(year, month, date, hour, minute, 0);
return dt;
}
else19. {
return new DateTime();
}
}
以上为个人经验,希望能给大家一个参考,也希望大家多多支持得得之家。如有错误或未考虑完全的地方,望不吝赐教。
沃梦达教程
本文标题为:C# 获取当前总毫秒数的实例讲解
基础教程推荐
猜你喜欢
- 一个读写csv文件的C#类 2022-11-06
- C#控制台实现飞行棋小游戏 2023-04-22
- C# 调用WebService的方法 2023-03-09
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- winform把Office转成PDF文件 2023-06-14
- C# List实现行转列的通用方案 2022-11-02
- C# windows语音识别与朗读实例 2023-04-27
- C#类和结构详解 2023-05-30
- unity实现动态排行榜 2023-04-27
- ZooKeeper的安装及部署教程 2023-01-22