给定一个DateTime对象,如何获得string格式的ISO 8601date?

鉴于:

DateTime.UtcNow 

如何获得符合ISO 8601标准格式的相同值的string?

请注意,ISO 8601定义了许多类似的格式。 我正在寻找的具体格式是:

 yyyy-MM-ddTHH:mm:ssZ 
 DateTime.UtcNow.ToString("yyyy-MM-ddTHH\\:mm\\:ss.fffffffzzz"); 

这给你一个类似于2008-09-22T13:57:31.2311892-04:00的date

另一种方法是:

 DateTime.UtcNow.ToString("o"); 

这给你2008-09-22T14:01:54.9571247Z

要获得指定的格式,您可以使用:

 DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") 

date时间格式选项

DateTime.UtcNow.ToString("s", System.Globalization.CultureInfo.InvariantCulture)应该给你你正在寻找的“s”格式说明符被描述为一个可sorting的date/时间模式; 符合ISO 8601。

 DateTime.UtcNow.ToString("s") 

返回类似于2008-04-10T06:30:00

UtcNow显然会返回UTC时间,所以在以下情况下不会造成任何伤害:

 string.Concat(DateTime.UtcNow.ToString("s"), "Z") 

使用:

 private void TimeFormats() { DateTime localTime = DateTime.Now; DateTime utcTime = DateTime.UtcNow; DateTimeOffset localTimeAndOffset = new DateTimeOffset(localTime, TimeZoneInfo.Local.GetUtcOffset(localTime)); //UTC string strUtcTime_o = utcTime.ToString("o"); string strUtcTime_s = utcTime.ToString("s"); string strUtcTime_custom = utcTime.ToString("yyyy-MM-ddTHH:mm:ssK"); //Local string strLocalTimeAndOffset_o = localTimeAndOffset.ToString("o"); string strLocalTimeAndOffset_s = localTimeAndOffset.ToString("s"); string strLocalTimeAndOffset_custom = utcTime.ToString("yyyy-MM-ddTHH:mm:ssK"); //Output Response.Write("<br/>UTC<br/>"); Response.Write("strUtcTime_o: " + strUtcTime_o + "<br/>"); Response.Write("strUtcTime_s: " + strUtcTime_s + "<br/>"); Response.Write("strUtcTime_custom: " + strUtcTime_custom + "<br/>"); Response.Write("<br/>Local Time<br/>"); Response.Write("strLocalTimeAndOffset_o: " + strLocalTimeAndOffset_o + "<br/>"); Response.Write("strLocalTimeAndOffset_s: " + strLocalTimeAndOffset_s + "<br/>"); Response.Write("strLocalTimeAndOffset_custom: " + strLocalTimeAndOffset_custom + "<br/>"); } 

OUTPUT

 UTC strUtcTime_o: 2012-09-17T22:02:51.4021600Z strUtcTime_s: 2012-09-17T22:02:51 strUtcTime_custom: 2012-09-17T22:02:51Z Local Time strLocalTimeAndOffset_o: 2012-09-17T15:02:51.4021600-07:00 strLocalTimeAndOffset_s: 2012-09-17T15:02:51 strLocalTimeAndOffset_custom: 2012-09-17T22:02:51Z 

资料来源:

  • 标准date和时间格式string (MSDN)

  • 自定义date和时间格式string (MSDN)

 System.DateTime.UtcNow.ToString("o") 

=>

 val it : string = "2013-10-13T13:03:50.2950037Z" 

我只是使用XmlConvert

 XmlConvert.ToString(DateTime.UtcNow, XmlDateTimeSerializationMode.RoundtripKind); 

它会自动保存时区。

你可以用下面的代码得到“Z”( ISO 8601 UTC ):

 Dim tmpDate As DateTime = New DateTime(Now.Ticks, DateTimeKind.Utc) Dim res as String = tmpDate.toString("o") '2009-06-15T13:45:30.0000000Z 

这是为什么:

ISO 8601有一些不同的格式:

DateTimeKind.Local

 2009-06-15T13:45:30.0000000-07:00 

DateTimeKind.Utc

 2009-06-15T13:45:30.0000000Z 

DateTimeKind.Unspecified

 2009-06-15T13:45:30.0000000 

.NET为我们提供了这些选项的枚举:

 '2009-06-15T13:45:30.0000000-07:00 Dim strTmp1 As String = New DateTime(Now.Ticks, DateTimeKind.Local).ToString("o") '2009-06-15T13:45:30.0000000Z Dim strTmp2 As String = New DateTime(Now.Ticks, DateTimeKind.Utc).ToString("o") '2009-06-15T13:45:30.0000000 Dim strTmp3 As String = New DateTime(Now.Ticks, DateTimeKind.Unspecified).ToString("o") 

注意 :如果将Visual Studio 2008“监视实用程序”应用于toString(“o”)部分,您可能会得到不同的结果,但我不知道这是否是一个错误,但在这种情况下,使用Stringvariables如果你正在debugging。

来源: 标准date和时间格式string (MSDN)

若要将DateTime.UtcNow转换为yyyy-MM-ddTHH:mm:ssZ的string表示forms,可以使用带有自定义格式string的DateTime结构的ToString()方法。 当使用带有DateTime的自定义格式string时,请务必记住,您需要使用单引号转义分隔符。

以下将返回您想要的string表示forms:

 DateTime.UtcNow.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss'Z'", DateTimeFormatInfo.InvariantInfo) 

如果你必须使用ISO 8601的date时间,那么ToString(“o”)应该产生你正在寻找的东西。 例如,

 2015-07-06T12:08:27 

但是,DateTime + TimeZone可能会出现其他问题,如在.NET中的博客文章DateTime和DateTimeOffset中所述:良好实践和常见错误

DateTime中有无数的陷阱,旨在给你的代码错误:

1. DateTimeKind.Unspecified DateTime值是坏消息。

2.-比较时,DateTime不关心UTC / Local。

3.-date时间值不知道标准格式string。

4.-parsing带有DateTime的UTC标记的string不保证UTC时间。

"s"标准格式说明符代表由DateTimeFormatInfo.SortableDateTimePattern属性定义的自定义date和时间格式string。 该模式反映了一个定义的标准( ISO 8601 ),并且该属性是只读的。 因此,无论使用何种文化或提供格式提供者,它总是相同的。 自定义格式string是"yyyy'-'MM'-'dd'T'HH':'mm':'ss"

当使用这个标准格式说明符时,格式化或parsing操作总是使用不变的文化。

– 来自MSDN

这些答案中的大多数都有毫秒/微秒,这明显不被ISO 8601支持。正确的答案是:

 System.DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ssK"); // or System.DateTime.Now.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssK"); 

参考文献:

  • ISO 8601规范
  • “K”说明符

有趣的是,自定义格式“yyyy-MM-ddTHH:mm:ssK”(不含ms)是最快的格式方法。

另外有趣的是,“S”格式在Classic上速度较慢,在Core上速度较快。

当然数字是非常接近的,在一些行之间的差异是微不足道的(testing后缀_Verify是没有后缀的相同)

 BenchmarkDotNet=v0.10.5, OS=Windows 10.0.14393 Processor=Intel Core i5-2500K CPU 3.30GHz (Sandy Bridge), ProcessorCount=4 Frequency=3233539 Hz, Resolution=309.2587 ns, Timer=TSC [Host] : Clr 4.0.30319.42000, 64bit RyuJIT-v4.6.1637.0 Clr : Clr 4.0.30319.42000, 64bit RyuJIT-v4.6.1637.0 Core : .NET Core 4.6.25009.03, 64bit RyuJIT Method | Job | Runtime | Mean | Error | StdDev | Median | Min | Max | Rank | Gen 0 | Allocated | --------------------- |----- |-------- |-----------:|----------:|----------:|-----------:|-----------:|-----------:|-----:|-------:|----------:| CustomDev1 | Clr | Clr | 1,089.0 ns | 22.179 ns | 20.746 ns | 1,079.9 ns | 1,068.9 ns | 1,133.2 ns | 8 | 0.1086 | 424 B | CustomDev2 | Clr | Clr | 1,032.3 ns | 19.897 ns | 21.289 ns | 1,024.7 ns | 1,000.3 ns | 1,072.0 ns | 7 | 0.1165 | 424 B | CustomDev2WithMS | Clr | Clr | 1,168.2 ns | 16.543 ns | 15.474 ns | 1,168.5 ns | 1,149.3 ns | 1,189.2 ns | 10 | 0.1625 | 592 B | FormatO | Clr | Clr | 1,563.7 ns | 31.244 ns | 54.721 ns | 1,532.5 ns | 1,497.8 ns | 1,703.5 ns | 14 | 0.2897 | 976 B | FormatS | Clr | Clr | 1,243.5 ns | 24.615 ns | 31.130 ns | 1,229.3 ns | 1,200.6 ns | 1,324.2 ns | 13 | 0.2865 | 984 B | FormatS_Verify | Clr | Clr | 1,217.6 ns | 11.486 ns | 10.744 ns | 1,216.2 ns | 1,205.5 ns | 1,244.3 ns | 12 | 0.2885 | 984 B | CustomFormatK | Clr | Clr | 912.2 ns | 17.915 ns | 18.398 ns | 916.6 ns | 878.3 ns | 934.1 ns | 4 | 0.0629 | 240 B | CustomFormatK_Verify | Clr | Clr | 894.0 ns | 3.877 ns | 3.626 ns | 893.8 ns | 885.1 ns | 900.0 ns | 3 | 0.0636 | 240 B | CustomDev1 | Core | Core | 989.1 ns | 12.550 ns | 11.739 ns | 983.8 ns | 976.8 ns | 1,015.5 ns | 6 | 0.1101 | 423 B | CustomDev2 | Core | Core | 964.3 ns | 18.826 ns | 23.809 ns | 954.1 ns | 935.5 ns | 1,015.6 ns | 5 | 0.1267 | 423 B | CustomDev2WithMS | Core | Core | 1,136.0 ns | 21.914 ns | 27.714 ns | 1,138.1 ns | 1,099.9 ns | 1,200.2 ns | 9 | 0.1752 | 590 B | FormatO | Core | Core | 1,201.5 ns | 16.262 ns | 15.211 ns | 1,202.3 ns | 1,178.2 ns | 1,225.5 ns | 11 | 0.0656 | 271 B | FormatS | Core | Core | 993.5 ns | 19.272 ns | 24.372 ns | 999.4 ns | 954.2 ns | 1,029.5 ns | 6 | 0.0633 | 279 B | FormatS_Verify | Core | Core | 1,003.1 ns | 17.577 ns | 16.442 ns | 1,009.2 ns | 976.1 ns | 1,024.3 ns | 6 | 0.0674 | 279 B | CustomFormatK | Core | Core | 878.2 ns | 17.017 ns | 20.898 ns | 877.7 ns | 851.4 ns | 928.1 ns | 2 | 0.0555 | 215 B | CustomFormatK_Verify | Core | Core | 863.6 ns | 3.968 ns | 3.712 ns | 863.0 ns | 858.6 ns | 870.8 ns | 1 | 0.0550 | 215 B | 

码:

  public class BenchmarkDateTimeFormat { public static DateTime dateTime = DateTime.Now; [Benchmark] public string CustomDev1() { var d = dateTime.ToUniversalTime(); var sb = new StringBuilder(20); sb.Append(d.Year).Append("-"); if (d.Month <= 9) sb.Append("0"); sb.Append(d.Month).Append("-"); if (d.Day <= 9) sb.Append("0"); sb.Append(d.Day).Append("T"); if (d.Hour <= 9) sb.Append("0"); sb.Append(d.Hour).Append(":"); if (d.Minute <= 9) sb.Append("0"); sb.Append(d.Minute).Append(":"); if (d.Second <= 9) sb.Append("0"); sb.Append(d.Second).Append("Z"); var text = sb.ToString(); return text; } [Benchmark] public string CustomDev2() { var u = dateTime.ToUniversalTime(); var sb = new StringBuilder(20); var y = u.Year; var d = u.Day; var M = u.Month; var h = u.Hour; var m = u.Minute; var s = u.Second; sb.Append(y).Append("-"); if (M <= 9) sb.Append("0"); sb.Append(M).Append("-"); if (d <= 9) sb.Append("0"); sb.Append(d).Append("T"); if (h <= 9) sb.Append("0"); sb.Append(h).Append(":"); if (m <= 9) sb.Append("0"); sb.Append(m).Append(":"); if (s <= 9) sb.Append("0"); sb.Append(s).Append("Z"); var text = sb.ToString(); return text; } [Benchmark] public string CustomDev2WithMS() { var u = dateTime.ToUniversalTime(); var sb = new StringBuilder(23); var y = u.Year; var d = u.Day; var M = u.Month; var h = u.Hour; var m = u.Minute; var s = u.Second; var ms = u.Millisecond; sb.Append(y).Append("-"); if (M <= 9) sb.Append("0"); sb.Append(M).Append("-"); if (d <= 9) sb.Append("0"); sb.Append(d).Append("T"); if (h <= 9) sb.Append("0"); sb.Append(h).Append(":"); if (m <= 9) sb.Append("0"); sb.Append(m).Append(":"); if (s <= 9) sb.Append("0"); sb.Append(s).Append("."); sb.Append(ms).Append("Z"); var text = sb.ToString(); return text; } [Benchmark] public string FormatO() { var text = dateTime.ToUniversalTime().ToString("o"); return text; } [Benchmark] public string FormatS() { var text = string.Concat(dateTime.ToUniversalTime().ToString("s"),"Z"); return text; } [Benchmark] public string FormatS_Verify() { var text = string.Concat(dateTime.ToUniversalTime().ToString("s"), "Z"); return text; } [Benchmark] public string CustomFormatK() { var text = dateTime.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssK"); return text; } [Benchmark] public string CustomFormatK_Verify() { var text = dateTime.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssK"); return text; } } 

https://github.com/dotnet/BenchmarkDotNet被使用;

如果您在SharePoint 2010或更高版本下开发,则可以使用

 using Microsoft.SharePoint; using Microsoft.SharePoint.Utilities; ... string strISODate = SPUtility.CreateISO8601DateTimeFromSystemDateTime(DateTime.Now)