Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
class test extends java.util.TimerTask{
public test(java.util.Timer t){
t.schedule(this, 5 * 60 * 1000);
}
public void run(){
showTime();
}
public void showTime()
{
Date theDate = new Date();
System.out.println("The time is" +theDate);
}
}