Sorry if this sounds like a dumb question but how do you time the execution of a java program? I'm not sure what class I should use to do this.

I'm kinda looking for something like:

//Some timer starts here
for (int i = 0; i < length; i++) {
  // Do something
}
//End timer here

System.out.println("Total execution time: " + totalExecutionTime);

Thanks

link|improve this question
feedback

8 Answers

up vote 13 down vote accepted
long startTime = System.currentTimeMillis();
for (int i = 0; i < length; i++) {
  // Do something
}
long endTime = System.currentTimeMillis();

System.out.println("Total execution time: " + endTime-startTime);

Hope this helped.

link|improve this answer
feedback

You can make use of System#nanoTime(). Get it before and after the execution and just do the math. It's preferred above System#currentTimeMillis() because it has a better precision. Depending on the hardware and the platform used, you may otherwise get an incorrect gap in elapsed time. Here with Core2Duo on Windows, between about 0 and ~15ms actually nothing can be calculated.

A more advanced tool is a profiler.

link|improve this answer
The timer on Windows doesn't have a particularly good resolution by default. There is a high-performance timer too, but it's much harder to use even from C and Java doesn't (AFAIK) provide access to that low a level of hackery without a JNI thunk. – Donal Fellows Apr 3 '10 at 22:47
+1 for the profiler link. – GregS Apr 3 '10 at 23:04
nanoTime() has one problem (at least on Windows); the timestamp is specific to the processor core. I had a program that got a negative execution time because it got the "start" timestamp on one core, and the "stop" timestamp on another core. – gustafc Apr 3 '10 at 23:33
feedback

Be aware that there are some issues where System#nanoTime() cannot be reliably used on multi-core CPU's to record elapsed time ... each core has maintains its own TSC (Time Stamp Counter): this counter is used to obtain the nano time (really it is the number of ticks since the CPU booted).

Hence, unless the OS does some TSC time warping to keep the cores in sync, then if a thread gets scheduled on one core when the initial time reading is taken, then switched to a different core, the relative time can sporadically appear to jump backwards and forwards.

I observed this some time ago on AMD/Solaris where elapsed times between two timing points were sometimes coming back as either negative values or unexpectedly large positive numbers. There was a Solaris kernel patch and a BIOS setting required to force the AMD PowerNow! off, which appeared to solved it.

Also, there is (AFAIK) a so-far unfixed bug when using java System#nanoTime() in a VirtualBox environment; causing all sorts of bizarre intermittent threading problems for us as much of the java.util.concurrency package relies on nano time.

See also:

http://stackoverflow.com/questions/510462/is-system-nanotime-completely-useless http://vbox.innotek.de/pipermail/vbox-trac/2010-January/135631.html

link|improve this answer
+1 for clear explanation for the shortcomings of nanoTime. – Jason Apr 4 '10 at 2:59
feedback

You get the current system time, in milliseconds:

final long startTime = System.currentTimeMillis();

Then you do what you're going to do:

for (int i = 0; i < length; i++) {
  // Do something
}

Then you see how long it took:

final long elapsedTimeMillis = System.currentTimeMillis() - startTime;
link|improve this answer
BalusC's answer is also correct; it depends on the needed timer resolution, and why you need the timing. – Jonathan Feinberg Apr 3 '10 at 22:29
feedback

For simple stuff, System.currentTimeMillis() can work.

It's actually so common that my IDE is setup so that upon entering "t0" it generates me the following line:

final long t0 = System.currentTimeMillis()

But for more complicated things, you'll probably want to use statistical time measurements, like here (scroll down a bit and look at the time measurements expressed including standard deviations etc.):

http://perf4j.codehaus.org/devguide.html

link|improve this answer
+1 for pointing out auto-generator code. I use a similar statement all the time, and didn't know about inserting code templates. Just found out how to do that with eclipse, and it will definitely help! – Jason Apr 4 '10 at 3:01
feedback

Have a look at System.currentTimeMillis().

link|improve this answer
feedback

use long startTime=System.currentTimeMillis() for start time, at the top of the loop

put long endTime= System.currentTimeMillis(); outside the end of the loop. You'll have to subtract the values to get the runtime in milliseconds.

If you want time in nanoseconds, check out system.nanoTime()

link|improve this answer
feedback
public class someClass
{
   public static void main(String[] args) // your app start point
   {
       long start = java.util.Calendar.getInstance().getTime();

       ... your stuff ...

       long end = java.util.Calendar.getInstance().getTime();
       System.out.println("it took this long to complete this stuff: " + (end - start) + "ms");
   }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.