This program will display the start time, end time and elapse time of a program to the user. For example if the program started at 09:23:45 and ended at 09:23:55 then the output to the user would be as such, start time: 09h:23m:45s end time: 09h:23m:55s elapsed time 00h:00m:10s. I am having issues will displaying the time... Please help
this is the main
import java.util.concurrent.TimeUnit;
import java.text.SimpleDateFormat;
public class ElapsedTimeWatch {
public static void main(String... args) throws InterruptedException {
TimeWatch watch = TimeWatch.start();
SimpleDateFormat dateFormat = new SimpleDateFormat("HH'h':mm'm':ss's'");
System.out.println("Start Time is : " + dateFormat.format(timestart));
String.format("%02dh:%02dm:%02ds",
TimeUnit.MILLISECONDS.toHours(watch.timestart()),//dateFormat.format(start)
TimeUnit.MILLISECONDS.toSeconds(watch.timestart()) -
TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS.toMinutes(watch.timestart())));
Thread.sleep(1000 * 10);
System.out.println("End Time is : " + dateFormat.format(timeend));
String.format("%02dh:%02dm:%02ds",
TimeUnit.MILLISECONDS.toHours(watch.timeend()),
TimeUnit.MILLISECONDS.toSeconds(watch.timeend()) -
TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS.toMinutes(watch.timeend())));
System.out.println("Elapsed Time custom format: " + watch.toMinuteSeconds());
}
}
Time Watch Class
import java.util.concurrent.TimeUnit;
public class TimeWatch {
long starts;
private TimeWatch() {
reset();
}
public static TimeWatch start() {
return new TimeWatch();
}
public TimeWatch reset() {
starts = System.currentTimeMillis();
return this;
}
public long time() {
long ends = System.currentTimeMillis();
return ends - starts;
}
//Start Time
public long timestart() {
starts = System.currentTimeMillis();
return starts;
}
//End Time
public long timeend() {
long ends = System.currentTimeMillis();
return ends;
}
public long time(TimeUnit unit) {
return unit.convert(time(), TimeUnit.MILLISECONDS);
public String toMinuteSeconds(){
return String.format("%d min, %d sec", time(TimeUnit.MINUTES),
time(TimeUnit.SECONDS) - time(TimeUnit.MINUTES));
}
}
As per the oracle documentation, System.nanoTime() is not related to clock. So, in this case, we can probably use
System.currentTimeMillis();
to start the timer. Once the timer is stopped, we can use the following code to print the lapse: