[Solved] Time in milliseconds calculation
Here some tipps to get started: You can parse the String to a Java Date like this: SimpleDateFormat format = new SimpleDateFormat(“HH:mm:ss”); Date startTimer1Date = format.parse(StartTimer1); You can get the current Date and Time like this: Date dateNow = new Date(); And since you are working with time only (and not with date and time), … Read more