如何将 Windows ping -s 选项上的时间戳转换为日期?

发布于 2024-11-04 18:36:30 字数 391 浏览 2 评论 0原文

<块引用>

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 技术交流群。

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

发布评论

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

评论(2

郁金香雨 2024-11-11 18:36:30

您获得的时间戳是 UTC 时间午夜过后的毫秒数。日期是当前日期。

从这里开始转换很简单:

time = timestamp /1000

hours = (time / 3600)
minutes = (time / 60) - (hours * 60)
seconds = time mod 60

The timestamp you get is number of miliseconds past midnight UTC time. Date is current date.

Conversion from here is simple:

time = timestamp /1000

hours = (time / 3600)
minutes = (time / 60) - (hours * 60)
seconds = time mod 60
风透绣罗衣 2024-11-11 18:36:30

如果有人正在寻找一种将日期/时间转换为时间戳并返回的快速方法,我刚刚遇到了 这个 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.

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