首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

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

2012-09-25 
Process 设置时间,避免超时???谢谢// 运行bat文件Process process Runtime.getRuntime().exec(xxx.bat

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)

热点排行