當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java ProcessBuilder redirectErrorStream()用法及代碼示例


用法:

    public boolean  redirectErrorStream ();
    public ProcessBuilder  redirectErrorStream (boolean re_err_stm);

ProcessBuilder類redirectErrorStream()方法

  • redirectErrorStream() 方法可在java.lang包。
  • redirectErrorStream() 方法用於檢查此流程構建器是否結合了標準錯誤和標準輸出。
  • redirectErrorStream (boolean re_err_stm) 方法用於放置此流程構建器的 redirectErrorStream 屬性。
  • 這些方法在組合錯誤和輸出流時不會拋出異常。
  • 這些是非靜態方法,隻能通過類對象訪問,如果我們嘗試使用類名訪問這些方法,則會出現錯誤。

參數:

  • 在第一種情況下,它不接受任何參數。
  • 在第二種情況下,Boolean re_err_stm- 此參數表示新屬性。

返回值:

在第一種情況下,方法的返回類型是boolean– 它返回true,然後錯誤輸出將與標準輸出合並,以便通過使用Process 類的getInputStream() 方法可以讀取錯誤和輸出,否則返回false。

在第二種情況下,方法的返回類型是ProcessBuilder,它返回此流程構建器。

例:

// Java program to demonstrate the example 
// of redirectErrorStream() method of ProcessBuilder class

import java.io.*;
import java.util.*;

public class RedirectErrorStream {
    public static void main(String[] args) throws Exception {
        // Creating an object of List
        List l = new LinkedList();

        // By using add() method to add elements
        l.add("TextPad.exe");
        l.add("notepad.exe");

        // Instantiating ProcessBuilder object
        ProcessBuilder pr_bu = new ProcessBuilder(l);

        // By using redirectErrorStream() method is 
        // to check whether this error stream is redirected
        // or not
        System.out.println("pr_bu.redirectErrorStream() =" + pr_bu.redirectErrorStream());

        // By using redirectErrorStream(boolean re_err_stm) method is not to 
        // redirect the error stream
        pr_bu.redirectErrorStream(false);
        System.out.println("pr_bu.redirectErrorStream(false) =" + pr_bu.redirectErrorStream());

        // By using redirectErrorStream(boolean re_err_stm) //method is to 
        // redirect the error stream
        pr_bu.redirectErrorStream(true);
        System.out.println("pr_bu.redirectErrorStream(true) =" + pr_bu.redirectErrorStream());
    }
}

輸出

pr_bu.redirectErrorStream() =false
pr_bu.redirectErrorStream(false) =false
pr_bu.redirectErrorStream(true) =true


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java ProcessBuilder redirectErrorStream() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。