question on timer to print something
hi i wanted to make use of timer to do println of an array with delay of 2sec interval and end the timer once end of array. how do i use timer to do that?
i have tried to use
Timer timer =new Timer(2000,this);
timer.start();
but i do not know where to do the printing and stopping of the timer.
Thanks in advance~~~

