new java.util.Timer().schedule(new TimerTask(){
@Override
public void run() {
System.out.println("Executed...");
//your code here
//1000*5=5000 mlsec. i.e. 5 seconds. u can change accordngly
}
},1000*5,1000*5);
long startTime = System.currentTimeMillis();
long elapsedTime = 0L.
while (elapsedTime < 2*60*1000) {
//perform db poll/check
elapsedTime = (new Date()).getTime() - startTime;
}
//Throw your exception
timer.schedule(new TimerTask() {
@Override
public void run() {
// Your database code here
}
}, 2*60*1000);
// Since Java-8
timer.schedule(() -> /* your database code here */, 2*60*1000);
要使任务在持续时间后重复,请执行以下操作:
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
// Your database code here
}
}, 2*60*1000, 2*60*1000);
// Since Java-8
timer.scheduleAtFixedRate(() -> /* your database code here */, 2*60*1000, 2*60*1000);
使任务超时 要具体执行澄清问题所要求的,即在给定时间段内尝试执行任务,可以执行以下操作:
ExecutorService service = Executors.newSingleThreadExecutor();
try {
Runnable r = new Runnable() {
@Override
public void run() {
// Database task
}
};
Future<?> f = service.submit(r);
f.get(2, TimeUnit.MINUTES); // attempt the task for two minutes
}
catch (final InterruptedException e) {
// The thread was interrupted during sleep, wait or join
}
catch (final TimeoutException e) {
// Took too long!
}
catch (final ExecutionException e) {
// An exception from within the Runnable task
}
finally {
service.shutdown();
}
5条答案
按热度按时间kr98yfug1#
gupuwyp22#
用这个
5us2dqdw3#
因此,答案的第一部分是如何做的主题要求,因为这是我最初的解释,一些人似乎觉得有帮助。这个问题后来被澄清了,我已经扩展了答案来解决这个问题。
设置计时器
首先您需要创建一个计时器(我使用
java.util
此处为版本):..
要运行任务,请执行以下操作:
要使任务在持续时间后重复,请执行以下操作:
使任务超时
要具体执行澄清问题所要求的,即在给定时间段内尝试执行任务,可以执行以下操作:
如果任务在2分钟内完成,这将正常执行,但有例外。如果它运行的时间超过这个值,就会抛出timeoutexception。
一个问题是,尽管在这两分钟后您会得到一个timeoutexception,但任务实际上会继续运行,尽管数据库或网络连接可能最终会超时并在线程中抛出一个异常。但要知道,在这种情况发生之前,它可能会消耗资源。
af7jpaap4#
[android]如果有人想用java在android上实现timer。
您需要像这样使用ui线程来执行操作。
ecfsfe2w5#
好吧,我想我现在明白你的问题了。你可以用一个未来来尝试做一些事情,如果什么都没发生的话,在一段时间后暂停。
例如。: