这个时间格式是不是很眼熟?

发布于 11-14 06:22 字数 404 浏览 1 评论 0原文

有人可以帮我知道这是什么日期时间格式,或者它由哪些部分组成?

例如

  • 201106020539Z0000031552001001
  • 201106020702Z0000000000001
  • 201105140701Z0000000000001
  • 201105170207A0000018 560001001

我想我已经得到了前几个部分(201106020539 code> 是 yyyymmddhhmm ),但是从 Z / A 字符开始,我不知道。有没有可能其余的根本不是日期时间?

Can someone help me tell what datetime format is this, or what are it's parts?

e.g.

  • 201106020539Z0000031552001001
  • 201106020702Z0000000000001
  • 201105140701Z0000000000001
  • 201105170207A0000018560001001

I think I've got the first few parts (201106020539 is yyyymmddhhmm), but from the Z / A character onward, I have no clue. Is it possible that the rest isn't a datetime at all?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

哑剧2024-11-21 06:22:51

Z 表示祖鲁语或 UTC 时间 https://meta.stackexchange.com/questions/14684 /so-html-formats-time-in Correctly,至于后面的内容,我不知道,因为所有其他时间数据已经在时区字符之前指示。

另外,您的时间戳似乎没有以相同数量的字符结尾,这表明它们可能不是相同的格式/规格?您从哪里获得它们?

The Z implies Zulu or UTC time https://meta.stackexchange.com/questions/14684/so-html-formats-time-incorrectly, as for what comes after, I don't know since all other time data has already been indicated prior to the Timezone Character.

Also, the fact that your timestamps don't seem to end in the same number of characters suggests they might not be the same format/spec? Where did you obtain them?

长安忆2024-11-21 06:22:51

您在什么情况下获得这些字符串?我猜这些数字是秒分数。

也许这对您有帮助:

对于 UTC 时间(DateTime.Kind
DateTimeKind.Utc 的属性值),
结果字符串包含“Z”
表示 UTC 日期的字符。

In which context did you get these strings? I would guess that the digits are the seconds fractions.

Maybe this helps you:

For a UTC time (a DateTime.Kind
property value of DateTimeKind.Utc),
the result string includes a "Z"
character to represent a UTC date.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文