當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Process getOutputStream()用法及代碼示例


Process類getOutputStream()方法

  • getOutputStream() 方法可在java.lang包。
  • getOutputStream() 方法用於獲取進程的輸出流和sub-process。
  • getOutputStream() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • getOutputStream() 方法在返回輸出流時不拋出異常。

用法:

    public abstract OutputStream getOutputStream();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是OutputStream,它返回與進程的標準輸入相關聯的輸出流。

例:

// Java program to demonstrate the example 
// of OutputStream getOutputStream() method of Process 

import java.io.*;
import java.util.*;

public class GetOutputStream {
    public static void main(String[] args) throws Exception {
        // Instantiating Process object
        System.out.println("Process Instantiated");
        Process pr = Runtime.getRuntime().exec("notepad.exe");

        // By using getOutputStream() method is to get the 
        // output stream of pr object
        OutputStream os = pr.getOutputStream();


        // By using close() method is to close the output stream
        System.out.println("Output Stream Closed:");
        os.close();
    }
}

輸出

Process Instantiated
Output Stream Closed:


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Process getOutputStream() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。