例如,如果你安排在 Python 中,你只需要导入时间,然后执行time.sleep(seconds)
然后你的好处就可以了。我试图在Java中做一些类似的事情,但它从来没有奏效。
答案 0 :(得分:0)
你可以用户类Timer java 参考:https://docs.oracle.com/javase/7/docs/api/java/util/Timer.html 或者使用http://www.quartz-scheduler.org/
答案 1 :(得分:-1)
你可以试试代码sleep 3s:
public class Main {
public static void main(String[] args) {
try {
Thread.sleep(3000);
} catch (InterruptedException ex) {
System.out.println("Error");
}
}
}