コード例 #1
0
ファイル: ProcessUtils.java プロジェクト: mbezjak/pride
 public static Process executeIn(
     File directory, List<?> commandLine, boolean processOutput, boolean redirectErrorStream)
     throws IOException {
   List<Integer> defaultAcceptableExitCodes = Arrays.asList(0);
   return ProcessUtils.executeIn(
       directory, commandLine, processOutput, redirectErrorStream, defaultAcceptableExitCodes);
 }
コード例 #2
0
ファイル: ProcessUtils.java プロジェクト: mbezjak/pride
 public static Process executeIn(File directory, List<?> commandLine) throws IOException {
   return ProcessUtils.executeIn(directory, commandLine, true, true);
 }
コード例 #3
0
ファイル: ProcessUtils.java プロジェクト: mbezjak/pride
 public static Process executeIn(File directory, List<?> commandLine, boolean processOutput)
     throws IOException {
   return ProcessUtils.executeIn(directory, commandLine, processOutput, true);
 }