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
相關用法
- Java Process Destroy()用法及代碼示例
- Java Process destroy()用法及代碼示例
- Java Process isAlive()用法及代碼示例
- Java Process getOutputStream()用法及代碼示例
- Java Process exitValue()用法及代碼示例
- Java Process getInputStream()用法及代碼示例
- Java Process getErrorStream()用法及代碼示例
- Java ProcessBuilder redirectErrorStream()用法及代碼示例
- Java ProcessBuilder environment()用法及代碼示例
- Java ProcessBuilder start()用法及代碼示例
- Java ProcessBuilder directory()用法及代碼示例
- Java Provider keySet()用法及代碼示例
- Java Properties propertyNames()用法及代碼示例
- Java Provider.Service getAttribute()用法及代碼示例
- Java Provider getName()用法及代碼示例
- Java Properties compute(Key, BiFunction)用法及代碼示例
- Java Provider keys()用法及代碼示例
- Java Properties containsKey(value)用法及代碼示例
- Java Properties computeIfAbsent(Key, Function)用法及代碼示例
- Java Provider.Service toString()用法及代碼示例
注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Process waitFor() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。