I am new to this forum.
I am creating a Timer / TimerTask program whose purpose is to click a button when a specific time arrives. I see that the click happen after 6 - 10 ms. But its not consistent. For example, if I want the click to happen at 06/16/2012 12:20:00:000, it happens at 06/16/2012 12:20:00:006 or 06/16/2012 12:20:00:010. All I want is the click to happen exactly at given time.
Is this a known issue or is there a better way to implement it?
timer.schedule(new java.util.TimerTask() {
public void run() {
............
}, executionTime);