Timing your Java program

My suggestion is to use the System function currentTimeMillis to time your java program. Here is a description of the function from Sun's java pages:
currentTimeMillis public static long currentTimeMillis()

Returns the current time in milliseconds. Note that while the unit of time of the return value is a millisecond, the granularity of the value depends on the underlying operating system and may be larger. For example, many operating systems measure time in units of tens of milliseconds.

See the description of the class Date for a discussion of slight discrepancies that may arise between "computer time" and coordinated universal time (UTC).

Returns: the difference, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC.


Here is a small program that tests this function.
class OneMoreTestTimer
{
        public static void main(String[] args)
        {
                long time = System.currentTimeMillis();
                System.out.println(time);

                int j;

                for(int i = 0; i < 10000; i++)
                        j = i;

                long newTime = System.currentTimeMillis();
                System.out.println(newTime);

                System.out.println(newTime-time);
        }
}