当前位置: 首页 > 工具软件 > NowView > 使用案例 >

c# 获取微秒,c# - 以毫秒精度获取DateTime.Now

徐茂材
2023-12-01

c# - 以毫秒精度获取DateTime.Now

如何以毫秒精度精确构造实际时间的时间戳?

我需要像16.4.2013 9:48:00:123这样的东西。 这可能吗? 我有一个应用程序,我每秒采样值10次,我需要在图表中显示它们。

11个解决方案

253 votes

如何以毫秒精度精确构造实际时间的时间戳?

我怀疑你的意思是毫秒精度。 DateTime具有很高的精度,但在精度方面相当粗糙。 一般来说,你不能。 通常系统时钟(DateTime.Now从中获取数据)的分辨率约为10-15 ms。 有关更多详细信息,请参阅Eric Lippert关于精度和准确性的博客文章。

如果您需要比此更精确的计时,您可能需要考虑使用NTP客户端。

但是,目前还不清楚你真的需要毫秒精度。 如果您不关心确切的时间 - 您只是想以正确的顺序显示样本,并且具有“非常好”的准确度,那么系统时钟应该没问题。 我建议你使用DateTime而不是DateTime.Now,以避免围绕夏令时过渡等的时区问题。

如果您的问题实际上只是将DateTime转换为精度为毫秒级的字符串,我建议使用:

string timestamp = DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss.fff",

CultureInfo.InvariantCulture);

(请注意,与您的示例不同,这是可排序的,并且不太可能导致混淆,无论是“月/日/年”还是“日/月/年”。)

Jon Skeet answered 2019-03-27T07:29:14Z

98 votes

这应该工作:

DateTime.Now.ToString("hh.mm.ss.ffffff");

如果您不需要显示它并且只需要知道时差,那么就不要将它转换为String。 保持原样,TimeSpan

并使用TimeSpan来了解时间间隔之间的差异:

DateTime start;

TimeSpan time;

start = DateTime.Now;

//Do something here

time = DateTime.Now - start;

label1.Text = String.Format("{0}.{1}", time.Seconds, time.Milliseconds.ToString().PadLeft(3, '0'));

Pyromancer answered 2019-03-27T07:29:51Z

19 votes

我正在寻找类似的解决方案,基于此线程上的建议,我使用以下内容    DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss.fff"),它像魅力一样工作。 注意:.fff是您要捕获的精确数字。

Jozcar answered 2019-03-27T07:30:17Z

15 votes

Pyromancer的答案对我来说似乎很好,但也许你想要:

DateTime.Now.Millisecond

但如果您要比较日期,TimeSpan就是您的选择。

Renae answered 2019-03-27T07:30:50Z

8 votes

使用DateTime Structure以毫秒和格式如下:

string timestamp = DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss.fff",

CultureInfo.InvariantCulture);

timestamp = timestamp.Replace("-", ".");

Jacman answered 2019-03-27T07:31:15Z

3 votes

据我了解这个问题,您可以选择:

DateTime dateTime = DateTime.Now;

DateTime dateTimeInMilliseconds = dateTime.AddTicks(-1 * dateTime.Ticks % 10000);

这将切断小于1毫秒的刻度。

Roland Dietz answered 2019-03-27T07:31:48Z

3 votes

如果你仍然想要一个日期而不是像其他答案一样的字符串,只需添加这个扩展方法。

public static DateTime ToMillisecondPrecision(this DateTime d) {

return new DateTime(d.Year, d.Month, d.Day, d.Hour, d.Minute,

d.Second, d.Millisecond, d.Kind);

}

birch answered 2019-03-27T07:32:13Z

1 votes

DateTime.UtcNow和DateTime.Now的问题在于,根据计算机和操作系统的不同,它可能仅精确到10到15毫秒。 但是,在Windows计算机上,可以使用低级函数GetSystemTimePreciseAsFileTime来获得微秒精度,请参阅下面的函数GetTimeStamp()。

[System.Security.SuppressUnmanagedCodeSecurity, System.Runtime.InteropServices.DllImport("kernel32.dll")]

static extern void GetSystemTimePreciseAsFileTime(out FileTime pFileTime);

[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)]

public struct FileTime {

public const long FILETIME_TO_DATETIMETICKS = 504911232000000000; // 146097 = days in 400 year Gregorian calendar cycle. 504911232000000000 = 4 * 146097 * 86400 * 1E7

public uint TimeLow; // least significant digits

public uint TimeHigh; // most sifnificant digits

public long TimeStamp_FileTimeTicks { get { return TimeHigh * 4294967296 + TimeLow; } } // ticks since 1-Jan-1601 (1 tick = 100 nanosecs). 4294967296 = 2^32

public DateTime dateTime { get { return new DateTime(TimeStamp_FileTimeTicks + FILETIME_TO_DATETIMETICKS); } }

}

public static DateTime GetTimeStamp() {

FileTime ft; GetSystemTimePreciseAsFileTime(out ft);

return ft.dateTime;

}

Stochastically answered 2019-03-27T07:32:41Z

0 votes

尝试使用datetime.now.ticks。 这提供了纳秒精度。 取两个滴答的delta(stoptick - starttick)/ 10,000是指定间隔的毫秒。

[https://docs.microsoft.com/en-us/dotnet/api/system.datetime.ticks?view=netframework-4.7.2]

darkstar answered 2019-03-27T07:33:15Z

-1 votes

public long millis() {

return (long.MaxValue + DateTime.Now.ToBinary()) / 10000;

}

如果你想要微秒,只需将10000更改为10,如果你想要10的微观,删除/ 10000。

distiking answered 2019-03-27T07:33:42Z

-3 votes

DateTime.Now.ToString(“ddMMyyyyhhmmssffff”)

amol jadhao answered 2019-03-27T07:34:09Z

 类似资料: