在 Java 中,我有一个以某种方式处理文本文件的函数。但是,如果花费太多时间,该过程很可能对该文本文件无用(无论原因是什么),我想跳过它。此外,如果进程耗时过长,也会占用过多的内存。我试图以这种方式解决它,但它不起作用:
for (int i = 0; i<docs.size(); i++){
try{
docs.get(i).getAnaphora();
}
catch (Exception e){
System.err.println(e);
}
}
wheredocs
只是List
目录中的一个文件。通常我必须手动停止代码,因为它“卡在”特定文件中(取决于该文件的内容)。
有没有办法测量该函数调用的时间并告诉Java跳过该函数花费的文件超过10秒?
编辑
在收集了几个不同的答案后,我想出了这个工作正常的解决方案。也许其他人也可以使用这个想法。
首先创建一个实现 Runable 的类(这样你可以在需要时将参数传递给线程):
public class CustomRunnable implements Runnable {
Object argument;
public CustomRunnable (Object argument){
this.argument = argument;
}
@Override
public void run() {
argument.doFunction();
}
}
然后在类中使用此代码main
来监视函数(argument.doFunction()
)的时间,如果需要很长时间则退出:
Thread thread;
for (int i = 0; i<someObjectList.size(); i++){
thread = new Thread(new CustomRunnable(someObjectList.get(i)));
thread.start();
long endTimeMillis = System.currentTimeMillis() + 20000;
while (thread.isAlive()) {
if (System.currentTimeMillis() > endTimeMillis) {
thread.stop();
break;
}
try {
System.out.println("\ttimer:"+(int)(endTimeMillis - System.currentTimeMillis())/1000+"s");
thread.sleep(2000);
}
catch (InterruptedException t) {}
}
}
我意识到stop()
它已经过时了,但是当我希望它停止时,我还没有找到任何其他方法来停止和退出线程。