如何以毫秒或纳秒的分辨率测量 adb shell 的时间?
使用date +%.%N
from adb shell 返回1401546811.N
(秒分辨率)而不是1401547289.231869798
(纳秒分辨率)。
如何从 adb shell 获得毫秒或纳秒的分辨率?
是否有一些终端程序可以用来给我这个?我能够使用System.currentTimeMillis()
和System.nanoTime()
从 Android 应用程序代码本身来测量时间,但我还需要来自内部的东西adb shell
。