我想计算在Windows中任务管理器上运行的进程的运行时间。
如果特定进程在一定时间后运行,那么我可以结束该进程。
答案 0 :(得分:4)
您需要使用时间函数。
//Your start time.
long startTime = System.nanoTime();
//YOUR CALL GOES HERE
//Your end time.
long stopTime = System.nanoTime();
//Take the difference and that is how long it takes to execute your function.
System.out.println(stopTime - startTime);