Java Process getOutputStream()方法与示例

流程类getOutputStream()方法

  • getOutputStream()方法在java.lang包中可用。

  • getOutputStream()方法用于获取流程和子流程的输出流。

  • getOutputStream()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • 返回输出流时,getOutputStream()方法不会引发异常。

语法:

    public abstract OutputStream getOutputStream();

参数:

  • 它不接受任何参数。

返回值:

此方法的返回类型为OutputStream,它返回与流程的标准输入关联的输出流。

示例

//Java程序演示示例 
//的OutputStreamgetOutputStream()方法的说明 

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

public class GetOutputStream {
    public static void main(String[] args) throws Exception {
        //实例化流程对象
        System.out.println("Process Instantiated");
        Process pr = Runtime.getRuntime().exec("notepad.exe");

        //通过使用getOutputStream()方法是获取 
        //pr对象的输出流
        OutputStream os = pr.getOutputStream();


        //通过使用close()方法是关闭输出流
        System.out.println("Output Stream Closed :");
        os.close();
    }
}

输出结果

Process Instantiated
Output Stream Closed :