Answers for "how to get sleep main for 1 second java"

5

java pause 1 second

//deprecated in main thread:
try {
  Thread.sleep(1000);//time is in ms (1000 ms = 1 second)
} catch (InterruptedException e) {e.printStackTrace();}

//please use bellow instead:
Timer timer = new Timer();
timer.schedule(new TimerTask() {
  @Override
  public void run() {
    //what you want to do
  }
}, 1000);//wait 1000ms before doing the action
Posted by: Guest on July-07-2020
0

sleep for milliseconds in java

public class SleepThingy {
	public static void main(String[] args)
    throws InterruptedException {
    	// the Thread.sleep function throws an InterruptedException
      	for (int i = 1; i < 11; i++) {
        	System.out.println(i);
          	Thread.sleep(1000); // sleep 1000 ms or 1 sec
        }
    }
}
Posted by: Guest on March-21-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language