java.lang.Process.getOutputStream()方法範例


java.lang.Process.getOutputStream() 方法獲取子進程的輸出流。輸出到流通過管道輸送到該Process物件表示的進程的標準輸入流。

宣告

以下是java.lang.Process.getOutputStream()方法的宣告

public abstract OutputStream getOutputStream()

引數

  • NA

返回值

此方法返回連線到子進程的正常輸入輸出流。

異常

  • NA

例子

下面的例子顯示lang.Process.getOutputStream()方法的使用。

package com.yiibai;

import java.io.BufferedOutputStream;
import java.io.OutputStream;

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 output stream
         OutputStream out = p.getOutputStream();

         // close the output stream
         System.out.println("Closing the output stream...");
         out.close();

      } catch (Exception ex) {
         ex.printStackTrace();
      }

   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Creating Process...
Closing the output stream...