

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Compute elapsed time in seconds in Java
To compute the elapsed time of an operation in seconds in Java, we use the System.currentTimeMillis() method. The java.lang.System.currentTimeMillis() returns the current time in milliseconds.
Declaration −The java.lang.System.currentTimeMillis() is declared as follows −
public static long currentTimeMillis()
The method returns time difference in milliseconds between the current time and midnight, January 1, 1970 (UTC or epoch time).
Let us see a program to compute the elapsed time of an operation in Java −
Example
Live Demo
public class Example { public static void main(String[] args) throws Exception { // finding the time before the operation is executed long start = System.currentTimeMillis(); for (int i = 0; i <5; i++) { Thread.sleep(60); } // finding the time after the operation is executed long end = System.currentTimeMillis(); //finding the time difference and converting it into seconds float sec = (end - start) / 1000F; System.out.println(sec + " seconds"); } }
Output
0.3 seconds
- Related Questions & Answers
- Compute elapsed time in hours in Java
- Compute the elapsed time of an operation in Java
- Measuring elapsed time in Java
- Get elapsed time in Java
- Get elapsed time in minutes in Java
- Get elapsed time in days in Java
- How to measure elapsed time in Java?
- How to calculate elapsed/execution time in Java?
- How to measure elapsed time in nanoseconds with Java?
- Computer elapsed time of an operation in milliseconds in Java
- How to measure elapsed time in python?
- How to calculate Elapsed time in OpenCV using C++?
- Subtract seconds from current time using Calendar.add() method in Java
- How to get current date/time in milli seconds in Java?
- Using Time datatype in MySQL without seconds?
Advertisements