I have a program that I would like to run at 9:00 PM my computer time. I need a way to find the milliseconds of that so that I can make the computer loop until it hits it. Something like this:
while(true){
if(System.currentTimeMillis() == [insert method to find millis].[get](2100)){
break;
}
}
// Do stuff
So I just need a way to get those Millis from 9 PM. Any ideas?
Create a new
Calendar
object (GregorianCalendar
is most probable) and usegetTimeInMillis()
.It should be noted that if you want to do this regularly, you might want to look at a scheduled task instead.