java某个方法执行超时处理,java – 如何包装一个方法,以便我可以杀死它的执行超过指定的超时时间?...

你应该看看这些课程:

FutureTask,

Callable,

Executors

这是一个例子:

public class TimeoutExample {

public static Object myMethod() {

// does your thing and taking a long time to execute

return someResult;

}

public static void main(final String[] args) {

Callable callable = new Callable() {

public Object call() throws Exception {

return myMethod();

}

};

ExecutorService executorService = Executors.newCachedThreadPool();

Future task = executorService.submit(callable);

try {

// ok, wait for 30 seconds max

Object result = task.get(30, TimeUnit.SECONDS);

System.out.println("Finished with result: " + result);

} catch (ExecutionException e) {

throw new RuntimeException(e);

} catch (TimeoutException e) {

System.out.println("timeout...");

} catch (InterruptedException e) {

System.out.println("interrupted");

}

}

}