Checking Run time in IntelliJ IDEA

前端 未结 1 2035
心在旅途
心在旅途 2021-02-13 02:19

How can I see how much time it took for the code to run in InteliJ?

1条回答
  •  [愿得一人]
    2021-02-13 03:01

    I don't think you can with Intellij, you either have to use a profiler like Yourkit to profile the code or use some primitive benchmarks using System.currentTimeInMillis(). Alternatively you can use Apache Commons StopWatch to do some benchmarking:

    StopWatch stopwatch = new StopWatch();
    stopwatch.start();
    ... some code...
    stopwatch.stop();
    long timeTaken = stopWatch.getTime()
    

    https://commons.apache.org/proper/commons-lang/javadocs/api-2.6/org/apache/commons/lang/time/StopWatch.html

    EDIT: There is a plugin available for Intellij that uses VisualVM to do profiling, you could install this as another alternative.

    http://plugins.intellij.net/plugin/?id=3749

    0 讨论(0)
提交回复
热议问题