Process Builder waitFor() issue and Open file limitations

前端 未结 4 1383
醉梦人生
醉梦人生 2020-12-03 18:11

I have inherited some code:

Process p = new ProcessBuilder(\"/bin/chmod\", \"777\", path).start();
p.waitFor();

Basically, there is for som

4条回答
  •  自闭症患者
    2020-12-03 19:01

    Thanks for the help guys, this should sort out a load of weirdness going on elsewhere because of it.

    Using your(Vinay) example and the stream closings:

    try{ 
      fw.close();
    
      ProcessBuilder pb = new ProcessBuilder("/bin/chmod", "777", path);
    
      pb.redirectErrorStream(true); // merge stdout, stderr of process
      p = pb.start();
    
      InputStreamReader isr = new  InputStreamReader(p.getInputStream());
      BufferedReader br = new BufferedReader(isr);
    
      String lineRead;
      while ((lineRead = br.readLine()) != null) {
        // swallow the line, or print it out - System.out.println(lineRead);
      }
    
    } catch (Exception ioe) {
      Logger.logException(Logger.WARN, ioe.getMessage(), ioe);
    } finally {
      try {
        p.waitFor();//here as there is some snipped code that was causing a different
                    // exception which stopped it from getting processed
    
        //missing these was causing the mass amounts of open 'files'
        p.getInputStream().close();
        p.getOutputStream().close();
        p.getErrorStream().close(); 
    
      } catch (Exception ioe) {
        Logger.logException(Logger.WARN, ioe.getMessage(), ioe);
      }
    }
    

    Got the idea from John B Mathews post.

提交回复
热议问题