Skip to content

Instantly share code, notes, and snippets.

@pragmatictesters
Created December 23, 2018 18:40
Show Gist options
  • Save pragmatictesters/75e15c7155adf21402dce35985f1b947 to your computer and use it in GitHub Desktop.
Save pragmatictesters/75e15c7155adf21402dce35985f1b947 to your computer and use it in GitHub Desktop.
package org.example.java8;
import java.time.Duration;
import java.time.Instant;
import java.time.temporal.TemporalUnit;
public class GetDuration {
public static void main(String[] args) throws InterruptedException {
Instant start = Instant.now();
Thread.sleep(1000);
Instant end = Instant.now();
Duration elapsed = Duration.between(start, end);
System.out.printf("Elapsed time " + elapsed.toMillis());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment