java time sleep milliseconds code example
Example: 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
}
}
}