进程在java中挂起,即使我已经阅读了(输入/错误)流,waitFor()也需要很长时间



我在Java中运行多个进程时遇到问题。

我有一个从向量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();
  1. 您必须关闭进程的输入流
  2. 您不能假设所有标准输出都将在任何标准错误之前写入。您要么必须在exec()之前合并这些流,要么在单独的线程中读取其中一个流

相关内容

  • 没有找到相关文章

最新更新