当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。