Hello!
I'm new in java. I need some help, guys.
How can I determine in Java next run time of cron-like job?
For example, if I have crontab entry without command, like
"*/15 * * * *", every 15 minutes
"5 */2 * * 1", every Monday at 00:05, 02:05, 04:05...
I need to determine in java, when is next run.
I've already tried jcrontab's CrontabParser class, but not found a way to determine time.
Any help appreciate.
Thanks in advance!