Code:
import java.util.*;
class Test2 extends TimerTask{
public void run(){ System.out.println(System.currentTimeMillis());
}
}
public class Test {
public static void main(String args[]){ Date date=new Date(2011,04,12,6,33,00);
Timer timer=new Timer();
timer.schedule(new Test2(),date);
}
}
//...
Leave a comment: