1

我有这种格式的日期时间。

1999-12-31 09:00:00

来自十六进制值:

F0C46C38

您如何将上述格式的日期时间值转换为 4 字节十六进制?我在上面发布的值是相互补充的。第二个代码块中的十六进制被反转。

谢谢!

4

2 回答 2

3

386CC4F0(hex) == 946652400(dec)
946652400 是 1999-12-31 15:00:00 GMT 的 Unix 时间戳。

import time
print hex(int(time.mktime(time.strptime('1999-12-31 15:00:00', '%Y-%m-%d %H:%M:%S'))) - time.timezone)
于 2012-06-03T04:54:15.233 回答
1
#!/usr/bin/env python3
import binascii
import struct
from datetime import datetime

# convert time string into datetime object
dt = datetime.strptime('1999-12-31 09:00:00', '%Y-%m-%d %H:%M:%S')

# get seconds since Epoch
timestamp = dt.timestamp() # assume dt is a local time

# print the timestamp as 4 byte hex (little-endian order)
print(binascii.hexlify(struct.pack('<I', round(timestamp))))
# -> b'f0c46c38'
于 2014-12-20T10:28:24.710 回答