This example demonstrates how to use the System.nanoTime()
method to calculate processing execution time in higher resolution. The processing time calculated in nanoseconds resolution.
package org.kodejava.lang;
public class NanoSecondsTimerResolution {
public static void main(String[] args) {
// Get process execution start time in nanoseconds.
long start = System.nanoTime();
System.out.println("Process start... " + start);
try {
Thread.sleep(5000); // Simulate a long process.
} catch (InterruptedException e) {
e.printStackTrace();
}
// Get process execution finish time in nanoseconds.
long finish = System.nanoTime();
System.out.println("Process finish... " + finish);
// Calculate the process execution time.
long execTime = finish - start;
System.out.println("Processing time = " + execTime + "(ns)");
}
}
Latest posts by Wayan (see all)
- How do I create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023