我正在使用以下代码将windows时间转换为unix时间戳
def convert_windows_time(windows_time):
return datetime.datetime(1601, 1, 1) + datetime.timedelta(microseconds=windows_time / 10)
我如何在nodejs中做同样的事情?这不起作用,它会导致不同的日期:
let a = parseInt(129436810067618693)
let b = (new Date('1601-01-01').getMilliseconds()) + a / 10
console.log(new Date(b / 10000))
有什么问题吗?
1条答案
按热度按时间ccrfmcuu1#
尝试以下操作: