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


Java Java.lang.Process.getErrorStream()用法及代碼示例



描述

這個java.lang.Process.getErrorStream()方法獲取子進程的錯誤流。該流從由此 Process 對象表示的進程的錯誤輸出流中獲取通過管道傳輸的數據。

聲明

以下是聲明java.lang.Process.getErrorStream()方法

public abstract InputStream getErrorStream()

參數

NA

返回值

此方法返回連接到子進程的錯誤流的輸入流。

異常

NA

示例

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

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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Process.getErrorStream() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。