To add a delay of a few seconds in your Java Program, you can make use of the Thread.sleep() method.
Example:
package org.code2care.examples;
import java.time.LocalDateTime;
public class JavaSleepFewSecondsExample {
public static void main(String[] args) throws InterruptedException {
System.out.println("Sleeping every 2 seconds...");
while(true) {
System.out.println(LocalDateTime.now());
Thread.sleep(2000);
}
}
}
Output:
You can also make use of the java.util.concurrent.TimeUnit class where you can pass in the time duration in seconds unlike milliseconds using Thread class.
Example:package org.code2care.examples;
import java.time.LocalDateTime;
import java.util.concurrent.TimeUnit;
public class JavaSleepFewSecondsExample {
public static void main(String[] args) throws InterruptedException {
System.out.println("Sleeping every 2 seconds...");
while(true) {
System.out.println(LocalDateTime.now());
TimeUnit.SECONDS.sleep(2);
}
}
}
Note both these methods thorws InterruptedException which needs to be handled.
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Convert Java Map Collection Object to JSON String using Jackson
- Java Stream flatmap() Examples
- [Fix] Instant java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
- How to run Java Unit Test cases with Apache Maven?
- How to check if Java main thread is alive
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Parsing CSV file using Java code example (Comma Separated File)
- Unhandled exception type InterruptedException : Java Threads
- Native getClass() method from java.lang.Object Class Explained with examples.
- Java Jackson ObjectMapper Class with Examples
- Java 8 Streams map() with examples
- Java 8 - Convert List to Map Examples
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Java Stream with Multiple Filters Example
- How to Clear StringJoiner in Java 8
- Spring 5 IoC Example with application Context XML (ClassPathXmlApplicationContext) and Gradle.
- How to get end of line (EOL) or new line character \r \n in Java
- Spring Boot CRUD Examples using JDBCTemplate
- Delete a File in Java with Examples
- Implementing Insertion Sort Algorithm in Java Program
- Java JDBC Batch Update Example with PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- [Hibernate] The method buildSessionFactory() from the type Configuration is deprecated
- How to fix Java HTTP java.net.UnknownHostException
- Java 8 Display time in 12 hour AM PM format
More Posts:
- How to Escape a character in a Bash command String - Bash
- How to clear cache and browsing history in Google Chrome? - Chrome
- Convert String to int in Java - Java
- How to Mount Google Drive in Colab Notebook - Google
- How to install Java OpenJDK 11 on Alpine Linux - Java
- How to create Custom RatingBar Android Programming Tutorial - Android
- 86 Gmail keyboard shortcuts that you may find Advantageous - Google
- Android appcompat_v7 Error retrieving parent for item: No resource found that matches the given name - Android