有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

计时器在java中如何在特定时间启动进程?

我有一个应用程序,它从用户那里获取开始和结束时间,并在(开始时间)运行到(结束时间)时启动特定进程,对于示例,我使用TimerTask实用程序,以防它仅从当前时间开始并运行到(结束时间)为止。我无法设置开始时间。如何在java

//my sample  program
import java.sql.Date;
import java.util.Timer;
import java.util.TimerTask;

public class Main {
  public static void main(String[] argv) throws Exception {

     int numberOfMillisecondsInTheFuture=1000;

//    start time= dynamically set by user
//    end time =dynamically set by user


    Date timeToRun = new Date(System.currentTimeMillis() + numberOfMillisecondsInTheFuture);//here is the problem.
    Timer timer = new Timer();

    timer.schedule(new TimerTask() {
      public void run() {

      //System.out.println("doing");
      //doing some task not related to this question
      }
    }, timeToRun);
  }

共 (1) 个答案