如何将 Windows ping -s 选项上的时间戳转换为日期?
<块引用>ping [SomeIP] -s 4 -t > ping.log
结果如下所示。
<块引用>来自[SomeIP]的回复:字节=32时间=4ms TTL=125
时间戳:[HOP]:83842793 ->
<前><代码> [HOP] : 83842793 -> [跳]:83832797-> [跳]:83842793
我如何将此时间戳转换为日期时间?
ping [SomeIP] -s 4 -t > ping.log
result of that command is like below.
Reply from [SomeIP] : bytes=32 time=4ms TTL=125
Timestamp: [HOP] : 83842793 ->
[HOP] : 83842793 -> [HOP] : 83832797 -> [HOP] : 83842793
how can i convert this timestamp to datetime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您获得的时间戳是 UTC 时间午夜过后的毫秒数。日期是当前日期。
从这里开始转换很简单:
The timestamp you get is number of miliseconds past midnight UTC time. Date is current date.
Conversion from here is simple:
如果有人正在寻找一种将日期/时间转换为时间戳并返回的快速方法,我刚刚遇到了 这个 chrome 扩展,我认为它真的很棒!这是最快的跨平台方法,我经常使用它,因为它解析大量的日期格式并且使用起来非常有趣。
If anyone is looking for a quick way to convert date/time to timestamp and back, I just came across this chrome extension and I think it's really great! It's the quickest cross platform method and I use it constantly since it parses plenty of date formats and is really fun nice to use.