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).
|
1
|
|
|
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
There is a code sample here: http://www.goldb.org/stopwatchjava.html
|
|||
|
|
|
|
not tested, but something like:
|
||||||
|
|
|
The standard idiom is:
|
||||
|