java.lang.Process.getErrorStream()方法實例
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...