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


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



描述

這個java.lang.Process.waitFor()如有必要,方法會導致當前線程等待,直到此 Process 對象表示的進程終止。如果子進程已經終止,則此方法立即返回。如果子進程尚未終止,調用線程將被阻塞,直到子進程退出。

聲明

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

public abstract int waitFor()

參數

NA

返回值

此方法返回進程的退出值。按照慣例,0 表示正常終止。

異常

NA

示例

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

package com.tutorialspoint;

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");

         // cause this process to stop until process p is terminated
         p.waitFor();

         // when you manually close notepad.exe program will continue here
         System.out.println("Waiting over.");
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

Creating Process...
Waiting over.

相關用法


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