Java Process getErrorStream()方法

java.lang.Process.getErrorStream() 方法获取子进程的错误流​​。数据流获取由该Process对象表示的进程的错误输出流的管道的数据。

1 语法

public abstract InputStream getErrorStream()

2 参数

3 返回值

此方法返回连接到子进程的错误流​​的输入流。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Process getErrorStream()方法
 */
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 error stream of the process and print it
         InputStream error = p.getErrorStream();
         for (int i = 0; i < error.available(); i++) {
            System.out.println("" + error.read());
         }

         // wait for 10 seconds and then destroy the process
         Thread.sleep(10000);
         p.destroy();

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

   }
}

输出结果为:

Creating Process...

 

热门文章

优秀文章