我在 Java 中运行多个进程时遇到问题。
我有一个从 vector 运行 Processes 的循环cmds
,它当前运行第一个进程,然后第二个进程挂起。
ProcessBuilder proc = null;
for (String cmd:cmds){
proc = new ProcessBuilder(cmd.split("\\s"));
Process p = proc.start();
//Handle streams
//in
Scanner stdin = new Scanner(p.getInputStream());
while(stdin.hasNextLine()){
System.out.println(stdin.nextLine());
}
//err
Scanner stderr = new Scanner(p.getErrorStream());
while(stderr.hasNextLine()){
System.out.println(stderr.nextLine());
}
//wait
p.waitFor();
}
这个答案显然对我不起作用,因为我已经从每个进程的 InputStream 和 ErrorStream 中读取。我有什么误解?
我怎样才能解决这个问题?
注意:我删除了我拥有的 try 块,因为它在此示例代码中并没有真正的帮助
编辑
proc = new ProcessBuilder(cur_string.split("\\s"));
proc. redirectErrorStream(true);
final Process p = proc.start();//Runtime.getRuntime().exec(cur_string);
//Handle streams
//in
new Thread(new Runnable(){
public void run(){
Scanner stdin = new Scanner(p.getInputStream());
while(stdin.hasNextLine()){
System.out.println(stdin.nextLine());
}
stdin.close();
}
}).start();
//wait
p.waitFor();