Windows 事件日志 SystemTime 格式

one*_*e14 3 windows windows-7 time date-time event-log

以下时间戳是在 Windows 安全日志期间创建的

TimeCreated 

   [ SystemTime]  2013-10-07T07:31:09.122037600Z 
Run Code Online (Sandbox Code Playgroud)

在这个时间戳中,我无法理解122037600Z部分是什么意思?它们代表毫秒还是什么?拜托我需要你的帮忙。

Placeholder
String  Meaning
YYYY    four-digit year
MM  two-digit month (01=January, etc.)
DD  two-digit day of month (01 through 31)
hh  two digits of hour (00 through 23)
mm  two digits of minute (00 through 59)
ss  two digits of second (00 through 59)
s   one or more digits representing a decimal fraction of a second
TZD time zone designator (“Z” or +hh:mm or -hh:mm)
Run Code Online (Sandbox Code Playgroud)

Mit*_*tch 5

整数秒后的部分是小数秒。在Z需要时区的地方,表示UTC。也可以这样写2013-10-07T07:31:09.122037600+00:00

122037600 fractional second
Z         Zulu, indicating UTC as time zone
Run Code Online (Sandbox Code Playgroud)