Which Java class should you use for time performance measurements?
(One could use any date/time class, but the reason I'm asking is in .Net there's a designated Stopwatch class for this purpose)
|
Which Java class should you use for time performance measurements? (One could use any date/time class, but the reason I'm asking is in .Net there's a designated Stopwatch class for this purpose) |
|||||||
|
|
The Spring Framework has an excellent
This produces:
StopWatch 'My Stop Watch': running time (millis) = 10000
-----------------------------------------
ms % Task name
-----------------------------------------
02000 020% initializing
05000 050% processing
03000 030% finalizing
|
|||
|
|
|
java.lang.System.nanoTime() Or you can use the StopWatch that is supplied in apache commons. This class uses java.lang.System.currentTimeMillis() http://commons.apache.org/lang/api-release/org/apache/commons/lang/time/StopWatch.html |
|||||||
|
|
You can try System.currentTimeMillis(), but also there a good profiling options under some well known IDEs, such as eclipse and netbeans. Also, away from the IDE, you can try standalone profilers in your performance measurements tasks. I think that by using profilers you will get better results than using System.currentTimeMillis(). |
|||
|
|
If you just want to measure it, use a stopwatch class, or maybe just a stopwatch. If you want to make it faster, consider this. |
|||
|
|
|
The best is to use System.nanoTime(), however, if you want to get Ticks (elapsed Ticks) like System.Diagnostics.Stopwatch does you then need to convert nanoseconds to Ticks (1 Tick = 100 Nanoseconds) and then start converting between nanos and millis, secs, mins, hours, then finally format the output into a Time representation such as the one of the Elapsed() method (hh:mm:ss.sssssss), however, looks like Dates in Java use only 3 milliseconds (hh:mm:ss.sss), so you also need to workout the format as well. I did one Stopwatch class for Java you can get it from: http://carlosqt.blogspot.com/2011/05/stopwatch-class-for-java.html Example:
The output:
Hope this helps. |
||||
|
|
|
|||||
|
|
Check out perf4j. Spring's stop watch is mainly for local development. Perf4j can support both your POC type timing as well as on a production environment. |
|||
|
|