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...