java.lang.Process.getErrorStream() 方法獲取子進程的錯誤流??。資料流獲取由該Process物件表示的進程的錯誤輸出流的管道的資料。
以下是java.lang.Process.getErrorStream()方法的宣告
public abstract InputStream getErrorStream()
NA
此方法返回連線到子進程的錯誤流??的輸入流。
NA
下面的例子顯示lang.Process.getErrorStream()方法的使用。
package com.yiibai; import java.io.InputStream; public class ProcessDemo { public static void main(String[] args) { try { // create a new process System.out.println("Creating Process..."); Process p = Runtime.getRuntime().exec("notepad.exe"); // get the error stream of the process and print it InputStream error = p.getErrorStream(); for (int i = 0; i < error.available(); i++) { System.out.println("" + error.read()); } // wait for 10 seconds and then destroy the process Thread.sleep(10000); p.destroy(); } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Creating Process...