如何在Android Shell中获得以毫秒为单位的时间?

前端之家收集整理的这篇文章主要介绍了如何在Android Shell中获得以毫秒为单位的时间?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How to measure time from adb shell with milliseconds resolution?3个
我正在尝试制作一个在Android上运行的shell脚本.我需要以比秒更精确的时间来测量时间 – 毫秒或纳秒.我怎样才能在Android Shell中执行此操作?

日期%N不给出以纳秒为单位的时间 – 它只给出N作为输出.我找不到任何其他命令/方式来做到这一点.

在Android API中,我们可以轻松地获取它,因此必须有一种方法可以通过shell来实现.

解决方法

首先安装busyBox for android:

https://play.google.com/store/apps/details?id=stericson.busybox&hl=en

然后你可以这样做:
adb shell“busyBox date%s”

以秒为单位获得时间:
adb shell“busyBox date%N”

获得纳秒秒.

原文链接:https://www.f2er.com/android/318071.html

猜你在找的Android相关文章