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


Java Java.lang.Process.getInputStream()用法及代码示例



描述

这个java.lang.Process.getInputStream()方法获取子进程的输入流。该流从由该 Process 对象表示的进程的标准输出流中获取通过管道传输的数据。

声明

以下是声明java.lang.Process.getInputStream()方法

public abstract InputStream getInputStream()

参数

NA

返回值

此方法返回连接到子进程正常输出的输入流。

异常

NA

示例

下面的例子展示了 lang.Process.getInputStream() 方法的用法。

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Process.getInputStream() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。