java.lang.Process.getInputStream()方法實例
java.lang.Process.getInputStream() 方法獲取子進程的輸入流。數據流獲取由該Process對象表示的進程的標準輸出流管道的數據。
聲明
以下是java.lang.Process.getInputStream()方法的聲明
public abstract InputStream getInputStream()
參數
-
NA
返回值
此方法返回輸入流連接到子進程的正常輸出。
異常
-
NA
例子
下麵的例子顯示lang.Process.getInputStream()方法的使用。
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 input stream of the process and print it InputStream in = p.getInputStream(); for (int i = 0; i < in.available(); i++) { System.out.println("" + in.read()); } // wait for 10 seconds and then destroy the process Thread.sleep(10000); p.destroy(); } catch (Exception ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Creating Process...