计算流程的运行时间

时间:2014-02-16 13:15:57

标签: java

我想计算在Windows中任务管理器上运行的进程的运行时间。

如果特定进程在一定时间后运行,那么我可以结束该进程。

1 个答案:

答案 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);