Runtime.getRuntime().exec(cmd)的超时处理

在使用Runtime.getRuntime().exec(cmd)执行某些系统命令,如nfs共享的mount时,会由于nfs服务异常等原因导致进程阻塞,使程序没法往下执行,而且也无法捕获到异常,相当于死在那里了。

Process process = Runtime.getRuntime().exec(cmd);
process.waitFor();

祸根就是调用了waitFor()方法。

今天在lee79的博客里看到了一种解决方法,认为很神奇,记录一下简化并优化了逻辑的关键代码

long startTime = System.currentTimeMillis();
boolean processFinished = false;
while(System.currentTimeMillis()-startTime < CMD_TIME_OUT*1000
        && !processFinished ){
    try {
        exitVal = process.exitValue();
    } catch (IllegalThreadStateException e) {
        Thread.sleep(DEFAULT_INTERVAL);
        continue;
    }
    processFinished = true;
}
  

 

 

你可能感兴趣的:(thread)