vote up 1 vote down star
1

How to compute accurately the time it takes a Java program to write or read a number of bytes from/to a file ?

It is really important that the time is being measured accurately. (The time should be computed by the program itself).

flag

5 Answers

vote up 0 vote down

The problem with the get System.xxx method is that the method itself needs a few milliseconds to compute. The usually "accepted" way of doing it is running the test a few tens of thousands of times and calculating an average of this.

Also, depending on your OS there is something called the time granularity (example for windows). This is the smallest amount of time your OS can compute. On some OS its a millisecond, on some others its a nanosecond. It might or might not be relevant in your case.

link|flag
System.nanoTime() takes 0.5 microseconds and System.currentTimeMillis() is much less. – Peter Lawrey Apr 9 at 20:00
vote up 1 vote down

Well, this will probably get downvoted for not being hi-tech enough, but the way I would do that is just run it in a loop some number of times.

Like if you run it 1000 times and clock it, that gives you milliseconds. Run it 1,000,000 times, and it gives you microseconds.

If you also want to find out why it's taking as long as it is, you can just pause it some number of times (like 10) while it's running, and that will tell you what it's doing and why.

link|flag
vote up 1 vote down

There is a code sample here:

http://www.goldb.org/stopwatchjava.html

/*
    Copyright (c) 2005, Corey Goldberg

    StopWatch.java is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
*/


public class StopWatch {

    private long startTime = 0;
    private long stopTime = 0;
    private boolean running = false;


    public void start() {
        this.startTime = System.currentTimeMillis();
        this.running = true;
    }


    public void stop() {
        this.stopTime = System.currentTimeMillis();
        this.running = false;
    }


    //elaspsed time in milliseconds
    public long getElapsedTime() {
        long elapsed;
        if (running) {
             elapsed = (System.currentTimeMillis() - startTime);
        }
        else {
            elapsed = (stopTime - startTime);
        }
        return elapsed;
    }


    //elaspsed time in seconds
    public long getElapsedTimeSecs() {
        long elapsed;
        if (running) {
            elapsed = ((System.currentTimeMillis() - startTime) / 1000);
        }
        else {
            elapsed = ((stopTime - startTime) / 1000);
        }
        return elapsed;
    }




    //sample usage
    public static void main(String[] args) {
        StopWatch s = new StopWatch();
        s.start();
        //code you want to time goes here
        s.stop();
        System.out.println("elapsed time in milliseconds: " + s.getElapsedTime());
    }
}
link|flag
vote up 5 vote down

not tested, but something like:

long delta = System.nanoTime();
try {
    // do your stuff
} finally {
    delta = System.nanoTime() - delta;
}
link|flag
I am new to Java. Why did you use a try block combined with finaly ? :) – Amir Vontihaisen Apr 8 at 19:48
The try...finally block ensures that the delta is calculated even if an exception is thrown during the actual work part. Which may or may not be useful to you. – mmyers Apr 8 at 19:53
I would suggest a catch and handle the exception. Your time means nothing if it the operation did not complete as expected. – uriDium Apr 9 at 12:43
vote up 7 vote down

The standard idiom is:

long startTime = System.nanoTime();
doSomething();
long elapsedTime = System.nanoTime() - startTime;
link|flag
its possible that as soon as you get your startTime, your thread loses control and takes a while to come back. – John Ellinwood Apr 8 at 19:46
Are you expecting it to write to the disk when it's blocked? what usually matters in the wall time including blockage. – Pete Kirkham Apr 8 at 19:51

Your Answer

Get an OpenID
or

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