Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

java swing timer sleep

System.out.println("Hi");
//Now it will pause
try{
  Thread.sleep(5000)//Time in milliseconds->5000==5 seconds 
  //^freezes whole program for amount of time
  System.out.println("Hola");//Appears after 5 seconds
}
catch(InterruptedException e){
  System.err.println(e.getMessage());
}
 
PREVIOUS NEXT
Tagged: #java #swing #timer #sleep
ADD COMMENT
Topic
Name
1+1 =