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


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


Process類waitFor()方法

  • waitFor() 方法可在java.lang包。
  • waitFor() 方法用於使當前運行的線程在需要時等待,直到此 Process 對象表示的進程完成其終止。
  • waitFor() 方法當進程已經終止時返回,當進程尚未終止時,調用線程將被阻塞,直到進程終止。
  • waitFor() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • waitFor() 方法在進程終止時不拋出異常。

用法:

    public abstract int waitFor();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是int,它返回進程的退出值,當它返回值 0 時,它反映了進程的正常終止。

例:

// Java program to demonstrate the example 
// of int waitFor() method of Process 

import java.io.*;
import java.util.*;

public class WaitFor {
    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 waitFor() method is to stop
        // current process until other process 
        // finish its execution

        pr.waitFor();

        // when we close current going process manually and so //waiting
        // process can continue its execution
        System.out.println("Waiting process can resume");
    }
}

輸出

Process Instantiated
Waiting process can resume


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Process waitFor() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。