当前位置: 代码迷 >> J2EE >> Process 设置时间,避免超时?多谢
  详细解决方案

Process 设置时间,避免超时?多谢

热度:482   发布时间:2016-04-22 00:39:47.0
Process 设置时间,避免超时???谢谢
// 运行bat文件
Process process = Runtime.getRuntime().exec("xxx.bat");

InputStream inputStream = process.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(
inputStream));

// 取得输出流
String line = "";
while ((line = reader.readLine()) != null) {
LOG.info(line);
}


我执行的.bat文件大概需要5个小时左右。
我怎么设置时间, 以免超时。

谢谢

------解决方案--------------------
process.wait(timeout)
  相关解决方案