当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。